Tuesday, December 7, 2010
perl goto example
#!/usr/bin/perl
# http://www.tutorialspoint.com/perl/perl_goto.htm
$count = 0;
START:
$count = $count + 1;
if( $count > 4 ){
print "Exiting program\n";
}else{
print "Count = $count, Jumping to START:\n";
goto START;
}
# http://www.tutorialspoint.com/perl/perl_goto.htm
$count = 0;
START:
$count = $count + 1;
if( $count > 4 ){
print "Exiting program\n";
}else{
print "Count = $count, Jumping to START:\n";
goto START;
}
Monday, December 6, 2010
Saturday, December 4, 2010
Friday, December 3, 2010
How to Make Free VoIP Calls on Your iPhone | iPhone.AppStorm
How to Make Free VoIP Calls on Your iPhone | iPhone.AppStorm: "Below are some of the most popular and widely used VoIP apps for the iPhone!"
How to Make Free VoIP Calls on Your iPhone | iPhone.AppStorm
How to Make Free VoIP Calls on Your iPhone | iPhone.AppStorm: "Below are some of the most popular and widely used VoIP apps for the iPhone!"
Subscribe to:
Posts (Atom)