Course of Raku / Advanced / Modules / Modules basics / Exercises
Read the constant
Problem
You are given a module in a file Circle.rakumod:
unit module Circle;
our $pi = 3.14;Write a program that loads this module with need (not
use) and prints the value of $pi. Remember
that need does not import names, so you reach the variable
through the module’s name.
Example
$ raku -I. read-pi.raku
3.14Solution
Course navigation
← Solution: Use a stats module | Solution: Read the constant →