From 2bb2ff871fa1761478442bec5f6a32c9428360a1 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 6 Apr 2025 14:20:18 -0400 Subject: Change method calls to use `foo.baz()` instead of `foo:baz()` --- examples/log/log.tm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'examples/log/log.tm') diff --git a/examples/log/log.tm b/examples/log/log.tm index 3aa45e7a..7375d5f6 100644 --- a/examples/log/log.tm +++ b/examples/log/log.tm @@ -13,33 +13,33 @@ func _timestamp(->Text): strftime(str, 20, "%F %T", tm_info); str } - return c_str:as_text() + return c_str.as_text() func info(text:Text, newline=yes): say("$\[2]⚫ $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [info] $text$\n") + file.append("$(_timestamp()) [info] $text$\n") func debug(text:Text, newline=yes): say("$\[32]🟢 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [debug] $text$\n") + file.append("$(_timestamp()) [debug] $text$\n") func warn(text:Text, newline=yes): say("$\[33;1]🟡 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [warn] $text$\n") + file.append("$(_timestamp()) [warn] $text$\n") func error(text:Text, newline=yes): say("$\[31;1]🔴 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [error] $text$\n") + file.append("$(_timestamp()) [error] $text$\n") func add_logfile(file:Path): - logfiles:add(file) + logfiles.add(file) func remove_logfile(file:Path): - logfiles:remove(file) + logfiles.remove(file) func main(): add_logfile((./log.txt)) -- cgit v1.2.3