Questions Concepts
GitHub icon

Vigil

Vigil - Esoteric programming language

< >

Vigil is an esoteric programming language created in 2013 by Bob Nystrom.

Source code:
git clone https://github.com/munificent/vigil
#834on PLDB 10Years Old

Vigil, the eternal morally vigilant programming language


Example from the web:
def fib(n): if n < 2: result = n else: result = fib(n - 1) + fib(n - 2) # fib() never returns negative number. swear result >= 0 return result

Language features

Feature Supported Token Example
Comments ✓
# A comment
Line Comments ✓ #
# A comment
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Traffic · Traffic Today · Day 305 · feedback@pldb.com · Logout