From 08a8d4d67439125ed89a66556b600e786fc5faec Mon Sep 17 00:00:00 2001 From: bytedream Date: Fri, 28 Feb 2025 20:48:44 +0100 Subject: [PATCH] add comments to repl --- src/introduction.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/introduction.md b/src/introduction.md index 2aba1f3..9c521d8 100644 --- a/src/introduction.md +++ b/src/introduction.md @@ -7,5 +7,8 @@ This smol book describes how to use Lua in the Browser, powered by Rust WebAssem --- ```lua,editable +-- Hello world example that executes right in your browser. +-- This is an interactive REPL, you can write any Lua code you want here. + print("Hello from WebAssembly Lua!") ```