You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Felix 'xq' Queißner 63e2e35c05 Starts implementing codegen 7 months ago
.github Project kickoff: First draft + grammar draft. 1 year ago
concept Starts implementing codegen 7 months ago
design Updates to Compilation. 1 year ago
docs Starts implementing codegen 7 months ago
examples Starts implementing codegen 7 months ago
lib Starts implementing codegen 7 months ago
src Starts implementing codegen 7 months ago
.gitattributes Project kickoff: First draft + grammar draft. 1 year ago
.gitignore Project kickoff: First draft + grammar draft. 1 year ago
README.md Updates to Compilation. 1 year ago
build.zig Starts implementing codegen 7 months ago
build.zig.zon Starts implementing codegen 7 months ago

README.md

Psi Programming Language

A low level, imperative, procedural programming language that is tailed to be compiled in low-memory (~10MB) environments.

import io;

pub fn main() u8 {
  io.print("Hello, World!\r\n");
  return 0;
}