Introduction to Blaze 🔥

Blazingly fast.

Open IDE

Blaze is a modern programming language that is supposed to be powerful and fast but without sacrificing readability.

Try running this Hello World program!

Basic Concepts

Variables

In Blaze, variables can be declared using either the arrow operator (<-) or the let keyword:

Run to see how variable declaration works

Control Flow

Blaze uses square brackets [] for code blocks:

Try this control flow example

Standard Library

Blaze comes with a powerful standard library. Here's an example using the HTTP client:

Make an HTTP request to GitHub's API

You can use every library from Golang's standard library with no configuration needed.

Open IDE