diff --git a/c/Centura.centura b/c/Centura.centura index bca9f7fb..aa5a2b15 100644 --- a/c/Centura.centura +++ b/c/Centura.centura @@ -7,4 +7,4 @@ Parameters Static Variables Local variables Actions - Call SalMessageBox( 'Hello World','Message',MB_Ok) + Call SalMessageBox( "Hello World",'Message',MB_Ok) diff --git a/d/DogeScript.djs b/d/DogeScript.djs index b20f3cde..d66229f2 100644 --- a/d/DogeScript.djs +++ b/d/DogeScript.djs @@ -1,3 +1,3 @@ shh such hello dogescript very next-gen wow difficulty -plz console.loge with 'Hello World' +plz console.loge with "Hello World" diff --git a/g/Google Apps Script.gs b/g/Google Apps Script.gs index dd15942c..e55204ea 100644 --- a/g/Google Apps Script.gs +++ b/g/Google Apps Script.gs @@ -1,3 +1,3 @@ function helloWorld() { - Logger.log('Hello World'); + Logger.log("Hello World"); } diff --git a/h/Hack.hh b/h/Hack.hh index d9b5532c..7851c79b 100644 --- a/h/Hack.hh +++ b/h/Hack.hh @@ -1,2 +1,2 @@ robot.respond /hello/i, (msg) -> - msg.send 'Hello World' + msg.send "Hello World" diff --git a/k/Karel.kl b/k/Karel.kl index 20afe957..960a22f7 100644 --- a/k/Karel.kl +++ b/k/Karel.kl @@ -1,4 +1,4 @@ PROGRAM hello_world BEGIN - WRITE('Hello World', CR) + WRITE("Hello World", CR) END hello_world diff --git a/p/PLSQL.sql b/p/PLSQL.sql index 65235a39..dc214380 100644 --- a/p/PLSQL.sql +++ b/p/PLSQL.sql @@ -1,4 +1,4 @@ begin - dbms_output.put_line('Hello World'); + dbms_output.put_line("Hello World"); end; / diff --git a/p/PiCat.pi b/p/PiCat.pi index 4491f89d..2035452f 100644 --- a/p/PiCat.pi +++ b/p/PiCat.pi @@ -1,2 +1,2 @@ main => - println('Hello World'). + println("Hello World").