From ef4a345da6482c1e0b98679142817a75e4f736ab Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Mon, 17 Jun 2024 13:12:26 -0400 Subject: [PATCH] remove print!s from words --- prelude.ld | 3 --- 1 file changed, 3 deletions(-) diff --git a/prelude.ld b/prelude.ld index a6bd347..c5d39f8 100644 --- a/prelude.ld +++ b/prelude.ld @@ -374,11 +374,8 @@ fn strip { fn words { "Takes a string and returns a list of the words in the string. Strips all whitespace." (str as :string) -> { - print! (str) let no_punct = strip (str) - print! (no_punct) let strs = split (no_punct, " ") - print! (strs) fn worder (list, str) -> if empty? (str) then do list > report! else do append (list, str) > report!