9 lines
269 B
Bash
9 lines
269 B
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Chapter 2 shows `./build/basic program.bas` without showing the file, because
|
||
|
|
# a reader following along already has one. Give the sandbox the shortest thing
|
||
|
|
# that proves the invocation works.
|
||
|
|
cat > program.bas <<'BAS'
|
||
|
|
10 PRINT "HELLO FROM A FILE"
|
||
|
|
BAS
|