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;
}