From 4df28edaf02d823dfaf02085765111355b0e4803 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 25 Mar 2025 17:28:48 -0400 Subject: [PATCH] Improve paths lesson --- lesson-templates/lesson-13-paths.tm | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lesson-templates/lesson-13-paths.tm b/lesson-templates/lesson-13-paths.tm index 3ced10f..e582846 100644 --- a/lesson-templates/lesson-13-paths.tm +++ b/lesson-templates/lesson-13-paths.tm @@ -7,26 +7,19 @@ func main(): path := (/tmp/test-file.txt) >> path - = /tmp/test-file.txt + = (/tmp/test-file.txt) - path:write("first line") + path:write("first") >> path:read() = "???" - path:append(" - - second line - ") + path:append(",second") >> path:exists() = yes - # You can iterate over a file by lines: - >> upper_lines := [line:upper() for line in path:by_line()!] - = [???] - >> path:parent() - = /??? + = (/???) >> path:extension() = "???"