Much thought AND consideration
Abc hello world efg
Code showing how to print 'Hello world'
HelloWorld.js
1/* This is where we print 'Hello world' */
2function main() {
3 const something = 1 + 2;
4 console.log('Hello world');
5}
Same, but in Lua
LuaWorld.lua
1--[[ This is where we print 'Hello world' ]]
2function main()
3 local something = 1 + 2;
4 print('Hello world');
5end
1plain text abcd