OFlux
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: oflux
Provenance: commit c084f57365 · authored 2026-03-06T01:14:40+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Sequential Node Pipeline
Provenance: commit c084f57365 · authored 2026-03-06T01:14:40+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// counter.flux -- OFlux example: sequential node pipeline
// OFlux is a flow-based concurrent programming language
node Start (detached)
guard Nothing ()
return ( Out int n )
end
node Double
guard Nothing ()
param ( In int n )
return ( Out int result )
end
node Print
guard Nothing ()
param ( In int result )
return ( Done )
end
// Flow definition: wire the nodes together
Initial : Start
Start -> Double
Double -> Print