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-2
LLM (this repo) · 1Pldb

Related languages

SYMPL (0.29)GEL (0.27)ISBL (0.25)JESS (0.25)SIL (0.24)

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
code.kb · added: 2026-03-16T15:00:00Z
; 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.)

Contribute — propose a file extension

Tell us where to find evidence about G2 (mapped to pl/g-2-2). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/G2/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← g-portugol G85 →