Installation
Install the Compiler
Section titled “Install the Compiler”Floe ships as a single Rust binary called floe.
From Source
Section titled “From Source”# Clone and buildgit clone https://github.com/milkyskies/floecd floecargo install --path .
# Verifyfloe --versionPrerequisites
Section titled “Prerequisites”Create a Project
Section titled “Create a Project”# Scaffold a new Floe projectfloe init my-appcd my-app
# Install npm dependenciesnpm install
# Compile .fl filesfloe build src/
# Or watch for changesfloe watch src/Editor Setup
Section titled “Editor Setup”VS Code
Section titled “VS Code”Install the Floe extension from the VS Code marketplace, or build from source:
cd editors/vscodenpm installnpm run buildThe extension provides:
- Syntax highlighting for
.flfiles - LSP integration (diagnostics, hover)
- Code snippets
Other Editors
Section titled “Other Editors”Floe includes an LSP server. Start it with:
floe lspAny editor with LSP support can connect to it.