This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Parser combinators in Python3 - Chris Smeele, 2020. | |
| # | |
| # This code works. Just not very good, due to it mapping very badly to | |
| # Python's execution model (it blows up with recursion depth). | |
| # It's also incredibly ugly, since Python very much does not want you to write | |
| # code in this style. | |
| # Creating it was a nice exercise however. | |
| # | |
| # I hereby release this awful code into the public domain. | |
| # Please leave it there and don't try to actually use it :-) |
OlderNewer