ampc 0.5.0-alpha

Compiler for the Amp language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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!");
};
```