pgScript
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: pgScript scripting language
Provenance: commit 63ee44fd47 · authored 2026-03-17T01:48:55+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 63ee44fd47 · authored 2026-03-17T01:48:55+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
-- pgScript: Fibonacci sequence using script-level variables
DECLARE @a INT;
DECLARE @b INT;
DECLARE @temp INT;
DECLARE @count INT;
DECLARE @limit INT;
SET @limit = 10;
SET @a = 0;
SET @b = 1;
SET @count = 0;
PRINT 'Fibonacci sequence:';
WHILE @count < @limit
BEGIN
PRINT @a;
SET @temp = @a + @b;
SET @a = @b;
SET @b = @temp;
SET @count = @count + 1;
END