VoltScript

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit b3285432b8 · authored 2026-03-13T04:34:20+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

VBScript (0.47)ChatScript (0.41)ZScript (0.40)Volt (0.38)F-Script (0.38)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit b3285432b8 · authored 2026-03-13T04:34:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.vss · added: 2026-03-13T10:00:00Z
' VoltScript Fibonacci sequence example
Sub Main()
    Dim iCount As Integer
    Dim iA As Long
    Dim iB As Long
    Dim iTemp As Long
    Dim i As Integer

    iCount = 10
    iA = 0
    iB = 1

    Print "Fibonacci sequence (first " & CStr(iCount) & " numbers):"

    For i = 1 To iCount
        Print CStr(iA)
        iTemp = iA + iB
        iA = iB
        iB = iTemp
    Next i

End Sub

Contribute — propose a file extension

Tell us where to find evidence about VoltScript (mapped to pl/voltscript). 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/VoltScript/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Volt Von Neumann's 29-state cellular automaton →