pkg(brainfuck-1.0.0): Add brainfuck 1.0.0
This commit is contained in:
parent
4217d3a89b
commit
f9c06f03a2
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
curl "http://mazonka.com/brainf/bff4.c" -o bff4.c
|
||||||
|
gcc -O3 bff4.c -O bff4
|
||||||
|
rm bff4.c
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put 'export' statements here for environment variables
|
||||||
|
export PATH=$PWD:$PATH
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"language": "brainfuck",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"aliases": ["bf"],
|
||||||
|
"author": "Thomas Hobson <git@hexf.me>"
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put instructions to run the runtime
|
||||||
|
bff4 "$@"
|
Loading…
Reference in New Issue