RosettaCodeData/Task/Fork/ALGOL-68/fork.alg
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
191 B
Text

main:
(
INT pid;
IF (pid:=fork)=0 THEN
print("This is new process")
ELIF pid>0 THEN
print("This is the original process")
ELSE
print("ERROR: Something went wrong")
FI
)