this repo has no description

Update range prelude base case (#111)

authored by

Chris Gregory and committed by
GitHub
e234fee0 3a749789

+1 -1
+1 -1
scrapscript.py
··· 4413 4413 | [x, ...xs] -> f x >+ map f xs 4414 4414 4415 4415 . range = 4416 - | 1 -> [0] 4416 + | 0 -> [] 4417 4417 | i -> range (i - 1) +< (i - 1) 4418 4418 4419 4419 . foldr = f -> a ->