From 0df908f55fd7f617be35f7fe7a48f2eee1b19d57 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 9 Nov 2024 17:54:32 -0500 Subject: Support iterating over pointers to collections again --- examples/log/log.tm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/log') diff --git a/examples/log/log.tm b/examples/log/log.tm index 89557e55..5e32a2b9 100644 --- a/examples/log/log.tm +++ b/examples/log/log.tm @@ -17,22 +17,22 @@ func _timestamp(->Text): func info(text:Text, newline=yes): say("$\[2]⚫ $text$\[]", newline) - for file in logfiles[]: + for file in logfiles: file:append("$(_timestamp()) [info] $text$\n") func debug(text:Text, newline=yes): say("$\[32]🟢 $text$\[]", newline) - for file in logfiles[]: + for file in logfiles: file:append("$(_timestamp()) [debug] $text$\n") func warn(text:Text, newline=yes): say("$\[33;1]🟡 $text$\[]", newline) - for file in logfiles[]: + for file in logfiles: file:append("$(_timestamp()) [warn] $text$\n") func error(text:Text, newline=yes): say("$\[31;1]🔴 $text$\[]", newline) - for file in logfiles[]: + for file in logfiles: file:append("$(_timestamp()) [error] $text$\n") func add_logfile(file:Path): -- cgit v1.2.3