PaddiM8 / Caique_old

A simple compiler/programming language implemented in C#, that uses LLVM.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Caique

Examples:

fn i32 main()
{
  for i, 0, 30, 3:
  {
    printNum(i);
  }
  
  return 0;
}

fn i32 printNum(i32 value)
{
  printf("%d", value);
  
  return 0;
}

About

A simple compiler/programming language implemented in C#, that uses LLVM.

License:MIT License


Languages

Language:C# 100.0%