Skip to content

thatrandomperson5/JumpLang

Repository files navigation

JumpLang

GitHub tag (latest by date) GitHub code size in bytes GitHub Workflow Status GitHub Repo stars GitHub last commit GitHub commit activity

A example interpreter made in about 1165 lines of nim

Use it!

Download the binary for your OS here OR run the web interpreter here

CLI

jumplang <filename.jmp>

Syntax

Keywords

echo "Hello world" # Echo
flag h: # Jump to using jump keyword
  # Content
jump h
if true:
  # Stuff

Lits

echo -159 # Int
echo true # bool
echo "str" # Str
echo 0.567 # float

Funcs

func name(arg1, arg2):
  # Stuff
name(1, 2)