All pastes #702665 Raw Edit

Anonymous

public text v1 · immutable
#702665 ·published 2007-09-19 00:06 UTC
rendered paste body
when @foo.contains('bar') {
 # do something
}

this would effectively become (in an ugly mix of perl 5 and 6)

fork and do {
 if @foo.contains('bar') {
  # do something
 }
}

except it would run in the same process and would probably be optimized more.