EViews
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: EconometricViews
Provenance: commit 0a17328888 · authored 2026-03-10T23:37:06+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 0a17328888 · authored 2026-03-10T23:37:06+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
' Fibonacci sequence in EViews
' Demonstrates vector operations and looping constructs
vector(10) fib
fib(1) = 1
fib(2) = 1
for !i = 3 to 10
fib(!i) = fib(!i-1) + fib(!i-2)
next
' Display the results
for !j = 1 to 10
@disp "Fib(" + @str(!j) + ") = " + @str(fib(!j))
next