some more run scripts
This commit is contained in:
parent
590704c425
commit
ab6ea9a755
4 changed files with 22 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
# Collection of FizzBuzz Programs
|
# Collection of FizzBuzz Programs
|
||||||
|
|
||||||
This repository contains various FizzBuzz implementations in various programming
|
This repository contains FizzBuzz implementations in various programming
|
||||||
languages.
|
languages.
|
||||||
|
|
7
scripts/c
Executable file
7
scripts/c
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
bash ./scripts/prepare.sh
|
||||||
|
|
||||||
|
gcc src/fb.c -o build/fb_c
|
||||||
|
build/fb_c
|
7
scripts/cpp
Executable file
7
scripts/cpp
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
bash ./scripts/prepare.sh
|
||||||
|
|
||||||
|
g++ src/fb.cpp -o build/fb_cpp
|
||||||
|
build/fb_cpp
|
7
scripts/rs
Executable file
7
scripts/rs
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
bash ./scripts/prepare.sh
|
||||||
|
|
||||||
|
rustc src/fb.rs -o build/fb_rs
|
||||||
|
build/fb_rs
|
Loading…
Add table
Reference in a new issue