JOSS III
Aliases: JOSS 3
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci Sequence Calculator
Provenance: commit 6a3e53254b · authored 2026-02-10T21:42:47+01:00 · agent claude-code · model sonnet · WebSearch disabled
1.1 Type "Fibonacci sequence calculator"
1.2 Set x = 0.
1.3 Set y = 1.
1.4 Type "Enter number of terms: "
1.5 Demand n.
1.6 For i = 1(1)n, do part 2.
2.1 Type x
2.2 Set z = x + y.
2.3 Set x = y.
2.4 Set y = z.