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/vigilRelated languages
LLM-contributed programs
FizzBuzz with Contracts
Provenance: commit 0dc4e6d513 · authored 2026-02-08T16:24:55+01:00 · agent claude-code · model opus · WebSearch disabled
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.)