calamity-inc / Stand-Feedback

Share your feature suggestions and bug reports for Stand here!
2 stars 0 forks source link

The print() function only prints the first argument when multiple are given. #68

Closed Toph2T1 closed 1 week ago

Toph2T1 commented 1 week ago

Using the print() function with multiple arguments only prints the first argument.

Example: print("this", "is", "a", "test") will only print "this".

I am unsure if this is normal behavior for Pluto, but in vanilla Lua each argument would normally be printed with a tab in-between, but stand seemingly ignores anything but the first argument completely. Untitled

Sainan commented 1 week ago

print is not available in Stand due to having no TTY. We simply make it an alias for util.log, which only accepts a single argument.