Skip to content

christVayds/JiC-Interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JiC Inpterpreter

JiC is an interpreter written in C for Yanji programming language.

Yanji is a static typed, functional programming language, its easy to learn with basic syntax similar to C, python and JavaScript.

Example: Write basic while loop in Yanji.

fn main(void): int{
	let x:int = 0;
	while(x < 10){
		x+=1;
		system.out("x = %d\n", x);
	}
	return 0;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors