What is Nectar?

Nectar is a systems programming language written in C++, with C FFI and direct assembly support.

Our Mission:

A systems programming language for the 21st century.

Quick Install:

curl -fsSL http://install.nectar.nekernel.org | sh

Example:

import cudaMalloc;

const main()
{
   let ptr := 0;
   let sz := 8;
   cudaMalloc(ptr, sz);
   return;
}