Skip to content

Commit 8c3dec4

Browse files
committed
Learning RPerl, Chapter 1, Exercise 1, Hello World
1 parent ac6c765 commit 8c3dec4

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

docs/developer_notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ https://rt.cpan.org
114114
##########################################################################################
115115

116116
http://www.cpantesters.org/distro/R/RPerl.html
117+
http://www.cpantesters.org/author/W/WBRASWELL.html
117118

118119
https://admin.cpantesters.org/cgi-bin/pages.cgi?act=user-author
119120
https://admin.cpantesters.org/cgi-bin/pages.cgi?act=author-dist&dist=RPerl

docs/todo.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Eyapp unescaped left braces
22

33
RELEASE Parse::Eyap vX.YZZY
44

5-
Fix Numeric Accuracy
6-
7-
RELEASE v1.000007
85

6+
CHECK
7+
Fix Numeric Accuracy
8+
tmp fix lib/RPerl/Test/OperatorVoid01NamedVoidReturn/*.DISABLED_NEED_FIX
99

1010
Fix CPAN Testers Bugs
1111

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/perl
2+
3+
# [[[ HEADER ]]]
4+
use strict;
5+
use warnings;
6+
use RPerl;
7+
our $VERSION = 0.001_000;
8+
9+
# [[[ CRITICS ]]]
10+
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
11+
12+
# [[[ OPERATIONS ]]]
13+
print 'Hello, world!' . "\n";

0 commit comments

Comments
 (0)