Skip to content

pibuxd/kekw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kekw

nice lang in development right now

what have I done?

  • inteeger variables, bool operators
  • functions
  • builtin print() which also can pass string
var sum = (n){
  if n > 1 {
    return n + sum(n-1);
  };

  return n;
};

print("SUM = ", sum(6));

output:

SUM = 21

Installing

make
./kekw.out test.kekw

Releases

No releases published

Packages

No packages published