8000 GitHub - LREGS/zeblang: a very basic language
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

LREGS/zeblang

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZebLang!

Welcome to a very basic programming language WIP

Features!

Assigning Variables

you can assign variables like so x = 2, you can also assign variables as a copy of another variable y = x

Exit!

You can exit your program with the following keyword exit, you can also provide an integer exit code

exit 1

exits with exit code 1

x = 2
exit x

exits with exit code 2

Adding

Add stuff together!

x = 1 + 1
exit x

exits with 2

Add as much stuff as you like!

x = 1 + 2 + 3 + 4
exit x

exits with 10

Add variables !

x = 1
y = 2
exit x + y

exits with 3

About

a very basic language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 98.7%
  • Shell 1.3%
0