Slate
1 program
Added 2025-11-05T20:14:28Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1044d462bc · authored 2025-11-05T21:14:28+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial Computation Example
Provenance: commit 1044d462bc · authored 2025-11-05T21:14:28+01:00 · model x-ai/grok-4-fast · Temp 0.4
Number extend [
factorial := | :self n |
n = 0 ifTrue: [ ^1 ]
false: [ ^n * (self factorial: n - 1) ]
].
10 factorial print.