From fac306d4fb153c416c8c2de6c9352717629c71e1 Mon Sep 17 00:00:00 2001 From: drudge Date: Thu, 9 Nov 2023 22:43:48 -0800 Subject: [PATCH] ch1 knocked out --- ch1/ex1-1.raku | 2 +- ch1/ex1-2.raku | 2 ++ ch1/ex1-3.raku | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 ch1/ex1-2.raku create mode 100644 ch1/ex1-3.raku diff --git a/ch1/ex1-1.raku b/ch1/ex1-1.raku index 91205ad..f845803 100644 --- a/ch1/ex1-1.raku +++ b/ch1/ex1-1.raku @@ -4,6 +4,6 @@ Is it a prime number? ) - say 137.WHAT; + say 137.WHAT; # ^name can be used also say 137.sqrt; say 137.is-prime; diff --git a/ch1/ex1-2.raku b/ch1/ex1-2.raku new file mode 100644 index 0000000..6ade207 --- /dev/null +++ b/ch1/ex1-2.raku @@ -0,0 +1,2 @@ +# What is the $*CWD variable, and what's its value on your system? +say $*CWD; diff --git a/ch1/ex1-3.raku b/ch1/ex1-3.raku new file mode 100644 index 0000000..6ea105f --- /dev/null +++ b/ch1/ex1-3.raku @@ -0,0 +1 @@ +say 'Hello World';