A example interpreter made in about 1165 lines of nim
Download the binary for your OS here OR run the web interpreter here
jumplang <filename.jmp>
echo "Hello world" # Echo
flag h: # Jump to using jump keyword
# Content
jump h
if true:
# Stuff
echo -159 # Int
echo true # bool
echo "str" # Str
echo 0.567 # float
func name(arg1, arg2):
# Stuff
name(1, 2)