Merge pull request #83 from ThreshMain/brainfuck-patch

Fixed brainfuck transpiler to accept args
This commit is contained in:
Brian Seymour 2021-02-15 14:33:14 -06:00 committed by GitHub
commit b9ef21cbea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -29,5 +29,8 @@ int main() {
EOF
timeout -s KILL 3 gcc -std=c11 -o binary code.c
# Merging args.args and stdin.stdin for emkc challenges
cat stdin.stdin >> args.args
# execution
timeout -s KILL 3 ./binary < args.args < stdin.stdin
timeout -s KILL 3 ./binary < args.args