tellme()

Description

Analogous to print() or console.log() in other languages. Prints a value to the console.

Syntax

tellme(value);

where value is the value to be printed to the console.

Usage

evermore: MEANINGOFLIFE = 42;
tellme(MEANINGOFLIFE);

// prints:
// 42

A constant is created using the evermore keyword, named MEANINGOFLIFE and equal to the value 42. The function tellme() then prints the value of this constant to the console.

Examples