Skip to content

Instantly share code, notes, and snippets.

@mugyu
Created February 12, 2012 07:08
Show Gist options
  • Save mugyu/1807002 to your computer and use it in GitHub Desktop.
Save mugyu/1807002 to your computer and use it in GitHub Desktop.
Gaucheでプロセス実行
;;;; Gauche process
(use gauche.process)
(run-process '(notepad) :wait #t)
(let1 process (run-process '(notepad))
; ...do some other work ...
(process-wait process))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment