Skip to content

WirthLukas/RoninLang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RoninLang

A programming language

Current State

The Ronin Conpiler currently converts the Ronin source code into JavaScript source code.

# input on the REPL console
ronin > var i = 0;

# output
let i = 0

# input on the REPL console
ronin > while (i < 9) { var j = i; while(j <= 8) { j = j + 1; } i = i + 1; }

# output
while (i < 9) {
	let j = i;
     
     	while (j <= 8) {
		j = j + 1;
	}
     
     i = i + 1;
}

Resources

About

A programming language

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages