- or download this
given fork {
case $_ < 0 {
...
#child
}
}
- or download this
if ((my $pid = fork()) < 0){
#error
...
} else {
$child
}
- or download this
if (get_the_boundary_x() < the_user_provided_x()){
draw_color("green");
...
else {
draw_color("red");
}