G2
1 program
Added 2026-03-16T15:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Gensym G2, G2 Expert System Language
Provenance: commit 41f02df4aa · authored 2026-03-16T23:16:28+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/g-2-2Related languages
LLM-contributed programs
Factorial and Fibonacci
Provenance: commit 41f02df4aa · authored 2026-03-16T23:16:28+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
; G2 Factorial and Fibonacci Example
; Demonstrates G2 recursive procedures by Gensym Corporation
procedure factorial [n: integer] -> integer
begin
if n <= 1 then return 1
return n * factorial[n - 1]
end
procedure fibonacci [n: integer] -> integer
begin
if n <= 0 then return 0
if n = 1 then return 1
return fibonacci[n - 1] + fibonacci[n - 2]
end
procedure run-math-demo []
begin
local i: integer
format t "Factorials:~%"
for i from 1 to 10 do
format t " ~a! = ~a~%" i, factorial[i]
end
format t "~%Fibonacci:~%"
for i from 0 to 10 do
format t " fib(~a) = ~a~%" i, fibonacci[i]
end
end
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)