Flatline

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: BigML Flatline
Provenance: commit f2c9fdf7ee · authored 2026-03-17T00:03:17+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

4 sources · pl_id: pl/flatline
LLM (this repo) · 1PldbPygmentsEsolang

Related languages

Feline (0.25)FlatZinc (0.15)Flint (0.14)Shine (0.14)Twine (0.14)

LLM-contributed programs

Loan Applicant Classifier

Provenance: commit f2c9fdf7ee · authored 2026-03-17T00:03:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.fln · license: Apache-2.0 · added: 2026-03-17T10:00:00Z
; Flatline example: classify loan applicants
; based on age and income fields
(let (age    (f "age")
      income (f "annual_income")
      debt   (f "debt_ratio"))
  (cond
    (< age 18)               "underage"
    (> debt 0.5)             "high_debt"
    (and (>= age 25)
         (> income 50000))   "qualified"
    true                     "review"))

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Flatline (mapped to pl/flatline). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Flatline/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Flatland FlatZinc →