summaryrefslogtreecommitdiff
path: root/code/snippets/if_fork.rb
blob: 5d426a848ead25e3d6a30a810b25ff9322967f26 (plain)
1
2
3
4
5
6
if fork
  puts "entered the if block"
else
  puts "entered the else block"
end