| 12345678910111213141516171819 |
- -- imports=
- import("core.platform.platform")
- -- main entry
- function main ()
- local plats = platform.plats()
-
- -- denote the start of vscode information to ignore anything logging to stdout before this point
- print("__begin__")
- if plats then
- for _, plat in ipairs(plats) do
- print(plat)
- end
- end
- -- print end tag to ignore other deprecated/warnings infos
- print("__end__")
- end
|