sasalla23 / ni

A compiler for a simple turing complete programming language written in c++.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ni-lang

A compiler for a simple turing complete programming language written in c++. The language at hand is called 'ni' and is a statically typed interpreted language.

Quick Start (Linux)

$ ./build.sh
$ ./main [input.ni]

Syntax

Ni follows a simple c-like syntax with a couple of adjustments.

Hello World

fun main(): void {
    print_line("Hello, World");
}

Variables

var x = 23;
x = x * x;
print_line(#string x);

Strings

var text = "Hello";
var firt_char = text[0];
var text_length = text.length;

Lists

var xs = [1,2,3];
var first_element = xs[0];
xs[1] = 5;
var list_length = xs.length;

Types

var x: int = 23;
var y: float = 23.5;
var z: char = 'H';
var a: string = "Hello, World";
var b: [int] = [1,2,3];

Functions

fun add(x: int, y: int): int {
    return x + y;
}

fun main(): void {
    var a = 23;
    var b = 2 * a;
    var c = add(a,b);
}

About

A compiler for a simple turing complete programming language written in c++.


Languages

Language:C++ 99.9%Language:Shell 0.1%