Skip to content

Commit

Permalink
Learning RPerl, Chapter 1, Exercise 1, Hello World
Browse files Browse the repository at this point in the history
  • Loading branch information
wbraswell committed Jul 11, 2015
1 parent ac6c765 commit 8c3dec4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/developer_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ https://rt.cpan.org
##########################################################################################

http://www.cpantesters.org/distro/R/RPerl.html
http://www.cpantesters.org/author/W/WBRASWELL.html

https://admin.cpantesters.org/cgi-bin/pages.cgi?act=user-author
https://admin.cpantesters.org/cgi-bin/pages.cgi?act=author-dist&dist=RPerl
Expand Down
6 changes: 3 additions & 3 deletions docs/todo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Eyapp unescaped left braces

RELEASE Parse::Eyap vX.YZZY

Fix Numeric Accuracy

RELEASE v1.000007

CHECK
Fix Numeric Accuracy
tmp fix lib/RPerl/Test/OperatorVoid01NamedVoidReturn/*.DISABLED_NEED_FIX

Fix CPAN Testers Bugs

Expand Down
13 changes: 13 additions & 0 deletions lib/RPerl/Learning/Chapter1/exercise_1-hello_world.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/perl

# [[[ HEADER ]]]
use strict;
use warnings;
use RPerl;
our $VERSION = 0.001_000;

# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator

# [[[ OPERATIONS ]]]
print 'Hello, world!' . "\n";

0 comments on commit 8c3dec4

Please sign in to comment.