I can run (run-program "/usr/ls" '())
in SBCL. Is there an equivalent in any Scheme implementation?
Asked
Active
Viewed 355 times
5

Joshua Taylor
- 84,998
- 9
- 154
- 353

Isaiah
- 1,995
- 2
- 18
- 29
3 Answers
3
GNU Guile also supports system
and other related functions (such as OS-level fork
and exec
).

Greg Hewgill
- 951,095
- 183
- 1,149
- 1,285
2
PLT/Racket supports system
, in different versions.

Martin v. Löwis
- 124,830
- 17
- 198
- 235
-
perfect! That works great. I wanted to to a program to learn from from started a program at the end. – Isaiah Feb 06 '11 at 19:07