全部博文(362)
发布时间:2013-03-13 11:18:59
#!/usr/bin/perl#author: zhengsenlin#date: 2013-03-13#desc: time piece use 5.016;use strict;use warnings;use autodie;use Time::Piece;my $t = localtime(1360780381);my $real_time = $t->ymd . " " . $t->hms;say $real_time;......【阅读全文】
发布时间:2013-03-08 22:04:39
#!/usr/bin/perl#author: zhengsenlin#date: 2013-03-06#desc: Wx okuse 5.016;use strict;use warnings;use autodie;use Wx;package MyFrame;use base 'Wx::Frame';.........【阅读全文】
发布时间:2013-03-08 22:01:24
#!/usr/bin/perl#author: zhengsenlin#date: 2013-03-06#desc: Wx okuse 5.016;use strict;use warnings;use autodie;use Wx;package MyApp;use base 'Wx::App';.........【阅读全文】
发布时间:2013-03-08 22:00:28
PerlMonks_tutorial_1.pl#!/usr/bin/perl#author: zhengsenlin#date: 2013-03-06#desc: Wx okuse 5.016;use strict;use warnings;use autodie;use Wx;package MyFrame;u.........【阅读全文】