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

Related languages

IEML (0.11)MetricsQL (0.09)Avenue (0.09)SLIP (0.08)Comet (0.08)

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
code.prg · added: 2026-03-10T12:00:00Z
' 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

Contribute — propose a file extension

Tell us where to find evidence about EViews (mapped to pl/eviews). 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/EViews/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Everything Evil →