Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 358 Bytes

keyword_function.md

File metadata and controls

19 lines (12 loc) · 358 Bytes

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;