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 return

Description

Return a value at the end of a function.

Example

function simpleReturn;
    # Simply return the value 5.
return 5;

int toAssign;

call simpleReturn -> toAssign;
# toAssign now equals 5.