# .global

Sets the global entry point to the specified branch.

A program must contain exactly one .global statement

# Syntax

.global <branch>
# Parameters

# Example

//...
.global main
main:
//...

# History

  • 0.1 added