test: 将 print 函数替换为 os.print

This commit is contained in:
Luke 2025-08-02 10:50:22 +08:00
parent b093f8db72
commit 6083c0b024

View File

@ -31,8 +31,8 @@ module: Main
if j % 2 == 0 then
continue
end if
print(i)
print(j)
os.print(i)
os.print(j)
end body
end loop
end body