Skip to content

lukflug/yakjava

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

yakjava

Simple programming language consisting of only booleans.

Example:

a=input;
rep:
if (a!=true) print a;
goto rep;

Following commands exist:

  • Assignment (no declaration necessary or allowed, e.g. a=true;).
  • Print, outputs boolean as true or false.
  • If-statement, same syntax as java.
  • Goto and labels, for jumping.

Arbitrarily complex expressions using booleans and logic operators are possible. input is a special variable allowing for input from the user using a (y/n) prompt.

About

Simple programming language consisting of only booleans.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages