Gaucheでプロセス実行
;;;; Gauche process (use gauche.process) (run-process '(notepad) :wait #t) (let1 process (run-process '(notepad)) ; ...do some other work ... (process-wait process))