Oil processes

Oil has an alternative way for managing processes.

The biggest difference is the fork and forkwait keyword which are blocks.

fork {
  sleep 4
  write -- "Hello world"
}

forkwait {
  sleep 4
  write -- "Hello world 2"
}