Windows 7:25 AM Unknown No comments Cursos: https://www.microsoftvirtualacademy.com/Home.aspx Read More Share This: Facebook Twitter Google+ Stumble Digg
linux, Mac, perl Unix history-simple 4:43 AM Unknown No comments Read More Share This: Facebook Twitter Google+ Stumble Digg
perl Perl - Sub/Hash 7:17 PM Unknown No comments #!/usr/bin/perl use strict; use warnings; my %hash; $hash{'perl'} = ' =) '; &show(\%hash); sub show(){ my ($hash) = @_; foreach my $key (keys %hash){ print "$hash->{$key}"; } } Result : $perl blog.pl =) Read More Share This: Facebook Twitter Google+ Stumble Digg
perl Perl - Function Substr 3:08 AM Unknown No comments #!/usr/bin/perluse strict;use warnings;my $phrase = 'This is friend "command line"';my $friend = substr($phrase,16,12);print "$friend\n";my $this = substr($phrase,0,4);print "$this\n"; result: > perl blog.pl command lineThis Read More Share This: Facebook Twitter Google+ Stumble Digg