From 9ad75fff5cbe45bdbe39ddeb2fc8e3671ec2e2a0 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Tue, 10 Jun 2025 09:30:04 -0400 Subject: [PATCH] Update examples/hello.js --- examples/hello.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/hello.js b/examples/hello.js index 90d3b5e..6bc550f 100644 --- a/examples/hello.js +++ b/examples/hello.js @@ -1,3 +1,3 @@ print("Hello, TempleOS, from MuJS!") -print("Current date and time is: " + JSON.stringify(new Date())) -print("Type mujs; with no arguments for a REPL, or mujs(\"path/to/file.js\"); to run a program.") +print("Current date and time is: " + new Date().toString()); +print("Type mujs; for a REPL, or mujs(\"path/to/file.js\"); to run a program.");