From e73ad00f44479e3065ccf12d07ca3ae22ca1f3f0 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Tue, 6 Dec 2022 15:40:52 +0200 Subject: Remove ! from end of builtin top-level functions --- examples/impure-concept.milch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/impure-concept.milch') diff --git a/examples/impure-concept.milch b/examples/impure-concept.milch index 893b29e..c767914 100644 --- a/examples/impure-concept.milch +++ b/examples/impure-concept.milch @@ -3,10 +3,10 @@ ; Pure functions can only call pure functions. ; Impure function names end in an exclamation mark (!) by convention. ; The top-level context is impure but has special rules -; related to `import!`, `let!`, and other builtins. +; related to `import`, `let`, and other builtins. ; pure function -(let! f (\[x] x)) +(let f (\[x] x)) ; impure function -(let! g! (\![x] (print! x))) +(let g! (\![x] (print! x))) -- cgit v1.3