5

I can run (run-program "/usr/ls" '()) in SBCL. Is there an equivalent in any Scheme implementation?

Joshua Taylor
  • 84,998
  • 9
  • 154
  • 353
Isaiah
  • 1,995
  • 2
  • 18
  • 29

3 Answers3

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
2

Chicken has system as well. In Gauche it's called sys-system.

Hans Nowak
  • 7,600
  • 1
  • 18
  • 18