View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword import

Description

Import function declarations from the standard library.

Example

import math;

# We can now use the functions declared in the math standard library for generating random numbers.
call seed_random;
int randomInt;
call get_random -> randomInt;