diff options
author | Ben Sima <ben@bsima.me> | 2020-05-12 12:32:57 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-12 12:33:37 -0700 |
commit | 0bbb74b7b0d8130cfcb71aedd7971e2906362a08 (patch) | |
tree | 17c8a542fa3061f81e21d2ad4540d4f0099780f6 /Alpha | |
parent | 22b95c42c5b096a3206f80e38b71aac3565ab6b7 (diff) |
for -> turn
Inspired by hoon
Diffstat (limited to 'Alpha')
-rw-r--r-- | Alpha/Core.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alpha/Core.scm b/Alpha/Core.scm index db5975b..0ef1098 100644 --- a/Alpha/Core.scm +++ b/Alpha/Core.scm @@ -206,7 +206,7 @@ (define (contains? ls x) (member? x ls)) -(define (for ls f) +(define (turn ls f) (map f ls)) (define (seq x) |