Skip to content

Learn to code in byte‐lang

deadlightreal edited this page Sep 7, 2024 · 2 revisions

Datatypes

To create a new variable type: <variable-type> <name> = <initial value>

Variable Types:

  • number
  • string
  • bool

Basic Functions of byte-lang

Wait

  • wait(1); - stops code execution for set amount of seconds.

Loop

  • loop(5) { <CODE> } - Executes a set amount of times code in braces.