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 call

Description

Used to execute a declared function, providing appropriate parameters when necessary.

Example

function fancyPrint : with string as toPrint;
    println "---------------------------------"
    println "> ", toPrint;
return;

string message = "Hello. How are you?";

call fancyPrint : message;