Lingua Franca
1 program
Added 2026-02-16T14:34:25.354237Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LF
Provenance: commit 1da134270c · authored 2026-02-16T15:35:05+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World Timer
Provenance: commit 1da134270c · authored 2026-02-16T15:35:05+01:00 · agent claude-code · model sonnet · WebSearch disabled
target C
reactor HelloWorld {
timer t(0, 1 sec)
state count: int = 0
reaction(t) {=
printf("Hello World %d\n", self->count++);
=}
}
main reactor {
h = new HelloWorld()
}