SCELBAL
1 program
Added 2026-02-11T08:40:28Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: SCientific ELementary BAsic Language
Provenance: commit 507fac6d3c · authored 2026-02-11T13:26:40+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial Calculator
Provenance: commit 507fac6d3c · authored 2026-02-11T13:26:40+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
10 PRINT "FACTORIAL CALCULATOR"
20 PRINT "ENTER A NUMBER: ";
30 INPUT N
40 IF N < 0 THEN 20
50 LET F = 1
60 LET I = 1
70 IF I > N THEN 110
80 LET F = F * I
90 LET I = I + 1
100 GOTO 70
110 PRINT "FACTORIAL OF "; N; " IS "; F
120 END