DEV Community

Discussion on: "Hello, World!" but in 30 different languages!!!

Collapse
 
luizpf profile image
Luiz "Bills" • Edited

PHP

<?= 'Hello, world!' ?>

JASS (language used in Warcraft III mods)

function InitTrig_Main takes nothing returns nothing
    call BJDebugMsg("Hello World")
endfunction