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/flowRelated languages
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
// @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.)