RosettaCodeData/Task/Fork/Erlang/fork-1.erl

10 lines
194 B
Erlang
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
-module(fork).
-export([start/0]).
start() ->
erlang:spawn( fun() -> child() end ),
io:format("This is the original process~n").
child() ->
io:format("This is the new process~n").