Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Vigil

< >

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

#720on PLDB 11Years Old
Download source code:
git clone https://github.com/munificent/vigil
Source Code

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 Example Token
Comments ✓ # A comment
Line Comments ✓ # A comment #
Semantic Indentation X

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0