mmap.page

Tinygo

This short introduction is outdated and unmaintained. Please refer to the official TinyGo documentation instead.

Tinygo is a Go compiler for microcontrollers and WebAssembly. It also supports x86 32 bit and 64 bit Linux.

Getting Started

Install

sh
sudo apt install llvm-7-dev libclang-7-dev
go get -u github.com/tinygo-org/tinygo

Usage

To compile a Linux executable:

sh
tinygo build -o hello_tiny hello.go

The output size of a hello world program is very impressive to me:

sh
1.1M    hello
12K     hello_tiny

Or run it directly:

sh
tinygo run hello.go

Go Language Features

Not supported: