BookIntroduction
This book discusses the use of the programming language Raku for computational workflows for prediction.
Workflows that belong to:
Machine Learning
Scientific computing
Numeric word forms parsing
Here we load a few packages:
use Lingua::NumericWordForms;
use Chemistry::Stoichiometry;
Consider examples of converting numeric word forms using the Raku package Lingua::NumericWordForms:
say from-numeric-word-form('one thousand and twenty three')
Here is another conversion from Bulgarian:
say from-numeric-word-form('две хиляди двеста и тринадесет')
Here is another conversion from Greek:
say from-numeric-word-form('τετρακόσια είκοσι επτά')
Here we convert a chemical element symbols to corresponding Russian names:
Chemical elements data
chemical-element(["O", "Cl", "S"], "Russian")
Variables
Consider the variable:
my $answer = 42;
$answer;
Here is a square of it:
$answer * $answer;
($answer ~ " ") x 5