## 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!"); }; ```