Vigil

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 0dc4e6d513 · authored 2026-02-08T16:24:55+01:00 · agent claude-code · model opus

Sources mentioning this language

3 sources · pl_id: pl/vigil
LLM (this repo) · 1PldbEsolang

Related languages

Virgil (0.50)FOIL (0.18)Fril (0.18)Rail (0.18)Vici (0.18)

LLM-contributed programs

FizzBuzz with Contracts

Provenance: commit 0dc4e6d513 · authored 2026-02-08T16:24:55+01:00 · agent claude-code · model opus · WebSearch disabled
code.vg · license: MIT · added: 2026-02-08T12:00:00Z
def is_positive(n):
    swear n > 0
    return n > 0

def factorial(n):
    implore n >= 0
    swear __result >= 1

    if n == 0:
        return 1

    return n * factorial(n - 1)

def fizzbuzz(n):
    implore n > 0

    i = 1
    while i <= n:
        if i % 15 == 0:
            print "FizzBuzz"
        elif i % 3 == 0:
            print "Fizz"
        elif i % 5 == 0:
            print "Buzz"
        else:
            print i
        i = i + 1

fizzbuzz(20)

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 Vigil (mapped to pl/vigil). 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/Vigil/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← vienna-definition-language Viktor's amazing 4-bit processor →