data-analysis · machine-learning · v0.4
ForgeScript is a small, expression-oriented language for data analysis and machine learning. Install the forgescript CLI and run .fs scripts straight from your terminal — no notebooks, no glue code.
# inside your project folder
$ curl -fsSL forgelang.app/install.sh | sh
$ forgescript run train.fs
✓ loaded "iris.csv" — 150 rows × 5 cols
✓ trained random_forest(trees: 200)
✓ accuracy 0.973 · saved "models/iris.fm"// dataframes
Load CSV, Parquet, or built-in datasets. Filter, group, and aggregate with a pipe operator that reads top to bottom.
// pipelines
The same script runs in the playground, on your laptop, or as a scheduled job. No second language, no glue code.
// cli
A single Node CLI. forgescript run, forgescript repl — install in one curl and you're typing fs> in seconds.