Io.print error

Posted by Hugo <Nabble> on
URL: https://old-forum.luan.software/Io-print-error-tp746.html

This code works:
local Io = require "luan:Io"
Io.print '/'
But this one doesn't:
local Io = require "luan:Io"
local path = '/'
Io.print path
Why?