#
.global
Sets the global entry point to the specified branch.
A program must contain exactly one .global statement
#
Syntax
.global <branch>
#
Parameters
- branch required Type: Branch
#
Example
//...
.global main
main:
//...
#
History
- 0.1 added