From f0cf43b48601e3b554e6ac7f82a984f4dfdafdde Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Sun, 22 Jun 2025 20:44:07 -0400 Subject: [PATCH] update block stack work --- assets/test_prelude.ld | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/test_prelude.ld b/assets/test_prelude.ld index 0bacc82..b9db177 100644 --- a/assets/test_prelude.ld +++ b/assets/test_prelude.ld @@ -267,13 +267,13 @@ fn contains? { } } -& fn print! { -& "Sends a text representation of Ludus values to the console." -& (...args) -> { -& base :print! (args) -& :ok -& } -& } +fn print! { + "Sends a text representation of Ludus values to the console." + (...args) -> { + base :print! (args) + :ok + } +} & fn show { & "Returns a text representation of a Ludus value as a string." @@ -326,7 +326,7 @@ fn contains? { keep concat contains? - & print! + print! & show & report! }