update block stack work

This commit is contained in:
Scott Richmond 2025-06-22 20:44:07 -04:00
parent e2c9619fa6
commit f0cf43b486

View File

@ -267,13 +267,13 @@ fn contains? {
} }
} }
& fn print! { fn print! {
& "Sends a text representation of Ludus values to the console." "Sends a text representation of Ludus values to the console."
& (...args) -> { (...args) -> {
& base :print! (args) base :print! (args)
& :ok :ok
& } }
& } }
& fn show { & fn show {
& "Returns a text representation of a Ludus value as a string." & "Returns a text representation of a Ludus value as a string."
@ -326,7 +326,7 @@ fn contains? {
keep keep
concat concat
contains? contains?
& print! print!
& show & show
& report! & report!
} }