Skip to content
Sxtanna edited this page Jul 9, 2020 · 1 revision

The push keyword is a high level construct for printing values to console.

Syntax

push 'expression'

  1. push
  • Push statements being with the push keyword.
  1. expression
  • The expression of a push if fully evaluated.

Examples

push "Hello World"
push (1 + 2) * 3 // will print '9'