Add missing argument

This commit is contained in:
Blizzero 2024-10-23 00:53:50 -04:00 committed by GitHub
parent 0a1e5ae87d
commit 0ae4b97369
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
```