Advanced Hello World
TIP
You may try this with the pre-built Console.
lua
print = java.method(java.import('java.lang.System').out,'println','java.lang.Object')
Ansi = java.import('org.fusesource.jansi.Ansi')
thread = java.import('java.lang.Thread')(function()
print(Ansi:ansi():render('@|magenta,bold Hello World |@'))
end)
thread:start()
1
2
3
4
5
6
7
2
3
4
5
6
7