in reply to Re: unless weirdness
in thread unless weirdness
#!/usr/bin/perl use strict; use warnings; die "Not enough disk space.\n" unless check_disk_space; sub check_disk_space{0;}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: unless weirdness
by CountZero (Bishop) on May 08, 2009 at 06:07 UTC | |
by ikegami (Patriarch) on May 08, 2009 at 06:34 UTC | |
by chromatic (Archbishop) on May 08, 2009 at 08:43 UTC | |
by Plankton (Vicar) on May 08, 2009 at 21:02 UTC | |
|
Re^3: unless weirdness
by wfsp (Abbot) on May 08, 2009 at 06:13 UTC |