<p align="center"><img width="65%" src="assets/logo.svg"></p>
## 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.
> :warning: The Amp compiler and language design is unfinished and subject to bugs and unannounced breaking changes.
```amp
import Io;
export const Main = func(): void {
Io.Println("Hello, world!");
};
```