From 97d0583c92c733aa8497a99f5267d50151f6e965 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 25 Jan 2026 23:54:29 +0000 Subject: fix(docs): replace remaining var references with let --- docs/std/io.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/std/io.md') diff --git a/docs/std/io.md b/docs/std/io.md index 825728d..7f46940 100644 --- a/docs/std/io.md +++ b/docs/std/io.md @@ -12,11 +12,11 @@ fn main() { io.println("Hello %s", "World"); // Formatting strings - autofree var s = io.format_new("Value: %d", 42); + autofree let s = io.format_new("Value: %d", 42); // Reading input io.print("Enter name: "); - autofree var name = io.readln(); + autofree let name = io.readln(); } ``` -- cgit v1.2.3