11 lines
161 B
Rexx
11 lines
161 B
Rexx
|
#!/usr/bin/env rexx
|
||
|
|
||
|
address hostemu 'execio * diskr "jabberwocky.txt" (finis stem jby.'
|
||
|
|
||
|
Do x = 1 to jby.0
|
||
|
Say jby.x
|
||
|
End
|
||
|
|
||
|
Exit
|
||
|
|
||
|
::requires "hostemu" LIBRARY
|