From 145a078387b8bce5e8e3c93c333c030aa7455e4c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 9 Nov 2024 17:26:01 -0500 Subject: Make the compiler stricter about not promoting local value variables to pointers --- examples/wrap/wrap.tm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/wrap') diff --git a/examples/wrap/wrap.tm b/examples/wrap/wrap.tm index 1c43470a..b6cf1403 100644 --- a/examples/wrap/wrap.tm +++ b/examples/wrap/wrap.tm @@ -33,7 +33,7 @@ func wrap(text:Text, width:Int, min_split=3, hyphen="-" -> Text): ... and I can't split it without splitting into chunks smaller than $min_split. ") - lines := [:Text] + lines := @[:Text] line := "" for word in text:split($/{whitespace}/): letters := word:split() @@ -93,10 +93,10 @@ func main(files:[Path], width=80, inplace=no, min_split=3, rewrap=yes, hyphen=UN (/dev/stdout) first := yes - wrapped_paragraphs := [:Text] + wrapped_paragraphs := @[:Text] for paragraph in text:split($/{2+ nl}/): wrapped_paragraphs:insert( wrap(paragraph, width=width, min_split=min_split, hyphen=hyphen) ) - out:write(\n\n:join(wrapped_paragraphs) ++ \n) + out:write(\n\n:join(wrapped_paragraphs[]) ++ \n) -- cgit v1.2.3