6 lines
115 B
Text
6 lines
115 B
Text
|
|
(defun start ()
|
||
|
|
(spawn (lambda () (child))))
|
||
|
|
|
||
|
|
(defun child ()
|
||
|
|
(lfe_io:format "This is the new process~n" '()))
|