This commit is contained in:
Blizzero 2024-10-23 00:57:59 -04:00 committed by GitHub
commit 150f6fed93
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ elseif #process.args > 0 then
print(process.args)
else
print("Got no arguments ☹️")
local prompted = stdio.prompt("Please enter some text:")
local prompted = stdio.prompt("text", "Please enter some text:")
print("Got prompted text:", prompted)
end
```