Gom is a statically typed, compiled programming language based on a subset of TypeScript's syntax. Imagine writing TypeScript, but instead of compiling to JavaScript, it compiles to LLVM IR which can then be compiled directly to machine code.
Here’s a typical hello world program in Gom:
import io;
function main() {
io.log("Hello, world!");
}