3. Fork the process

[<<<] [>>>]

pid = ux::fork()
if pid then
  print "The sub process pid is ",pid
else
  print "Oh I am the child process"
end if

[<<<] [>>>]