Flow

1 program Added 2026-02-10T23:01:50.885109Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Flow Type
Provenance: commit f8383c234a · authored 2026-02-11T13:26:14+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

5 sources · pl_id: pl/flow
LLM (this repo) · 1PldbWikipediaEsolangWikidata · Q17146842

Related languages

Flow9 (0.25)Flowlog (0.22)FLOWTRAN (0.22)Archetype (0.21)Reflow (0.18)

LLM-contributed programs

Basic Type Annotations Example

Provenance: commit f8383c234a · authored 2026-02-11T13:26:14+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.js · license: MIT · added: 2026-02-10T23:01:50.885109Z
// @flow
function add(a: number, b: number): number {
  return a + b;
}

function greet(name: string): string {
  return `Hello, ${name}!`;
}

type Person = {
  name: string,
  age: number,
};

function formatPerson(person: Person): string {
  return `${person.name} is ${person.age} years old`;
}

const result: number = add(5, 10);
const message: string = greet("World");
const john: Person = { name: "John", age: 30 };
const info: string = formatPerson(john);

console.log(result);
console.log(message);
console.log(info);

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 Flow (mapped to pl/flow). 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/Flow/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← floscript Flow chart →