| > However, note the BUGS section of rc(1): "Functions that use here | > documents don't work."
Byron's rc works!
; fn zot {
for (a in 1 2 3) {
cat <<EOF
Hello
World
EOF
}
}
; zot
Hello
World
Hello
World
Hello
World
| > However, note the BUGS section of rc(1): "Functions that use here | > documents don't work."
Byron's rc works!
; fn zot {
for (a in 1 2 3) {
cat <<EOF
Hello
World
EOF
}
}
; zot
Hello
World
Hello
World
Hello
World