From 023fb2bfd7ad5c10f96209f14634706b9cacd2fc Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 30 Dec 2024 18:22:47 +0000 Subject: [PATCH] chore(examples): improve contents listing with indent --- examples/tour.luau | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tour.luau b/examples/tour.luau index 1169025..d57bd0d 100644 --- a/examples/tour.luau +++ b/examples/tour.luau @@ -16,10 +16,10 @@ end) print("\nContents of `/`:") local assets = reader:listDirectory("/") for _, entry in assets do - print(entry.name, if entry.isDirectory then "DIR" else entry.size) + print(" ->", entry.name, if entry.isDirectory then "DIR" else entry.size) if not entry.isDirectory then local extracted = reader:extract(entry, { isString = true }) - print("Content:", extracted) + print(" -> Content:", extracted) end end