Skip to content

amp-lang/Amp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

Amp is a general-purpose systems language built on modern standards, built for modern problems. Amp is designed as an alternative to both C and C++, with a focus on simplicity and performance.

⚠️ The Amp compiler and language design is unfinished and subject to bugs and unannounced breaking changes.

import Io;

export const Main = func(): void {
    Io.Println("Hello, world!");
};