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 function

Description

Declare a function.

Example

function helloWorldWithName : using NAME;
    println "Hello, ", NAME, "!";
return;

const string NAME = "John Doe";

call helloWorldWithName : NAME;