# Pastebin 07IwumVV # Direct unslot "Hello, World!" puts # Unslot on unslot hello = "Hello, World!" hello puts # unslot of method hello = (| "Hello, World!" puts ) hello # unslot of method with argument hello: = (who| "Hello, " + who + "!" puts ) hello: "World" # unslot on block hello = [| "Hello, World!" puts ] hello call # unslot on block with argument hello = [who| "Hello, " + who + "!" puts ] hello call: "World"