Skip to content

Instantly share code, notes, and snippets.

View akgerber's full-sized avatar

Alan Gerber akgerber

View GitHub Profile
@akgerber
akgerber / hoot.md
Created June 5, 2023 16:44
including [link to recurse](https://www.recurse.com/)

testing git.ht

# Python 3.10 required for pattern matching
from typing import List
def parse_args(argstr: str) -> List:
args = []
arg = []
parendepth = 0
for c in argstr: