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

Text::CodeProcessing v0.4.3

A package with functions for processing of code chunks in documents of different types (like Markdown, Org-mode, Pod6.)

Authors

  • Anton Antonov

License

Artistic-2.0

Dependencies

Test Dependencies

Provides

  • Text::CodeProcessing
  • Text::CodeProcessing::REPLSandbox

Documentation

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.