Skip to content
/ tarik Public

tarik is a minimal, compiled language, designed for low-level programming.

License

Notifications You must be signed in to change notification settings

Not-Nik/tarik

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tarik

tarik is a minimal, compiled language, designed for low-level programming.

Hello World

fn puts(u8 *s) i32;

fn main() i32 {
    puts("Hello, World!");

    return 0;
}
tarik hello.tk
gcc hello.o -o hello
./hello

Inspiration

tarik is inspired by

Building

To build tarik you will need a C++ compiler, LLVM 18.1 and CMake >= 3.17.

Then the build procedure is as usual with cmake:

mkdir build && cd build
cmake ..
cmake --build .

About

tarik is a minimal, compiled language, designed for low-level programming.

Topics

Resources

License

Stars

Watchers

Forks