GEORGE 4
1 program
Added 2026-02-10T20:03:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 9b031e6d40 · authored 2026-02-10T21:05:33+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
Factorial Calculator
Provenance: commit 9b031e6d40 · authored 2026-02-10T21:05:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Simple GEORGE 4 program to calculate factorial
; Input: N (number)
; Output: N! (factorial)
READ N ;
F = 1 ;
I = 1 ;
LOOP:
IF I > N, EXIT ;
F = F * I ;
I = I + 1 ;
JUMP LOOP ;
EXIT:
PRINT F ;