diff --git a/c/Centura.centura b/c/Centura.centura index aa5a2b1..bca9f7f 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 d66229f..b20f3cd 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 e55204e..dd15942 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 7851c79..d9b5532 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 960a22f..20afe95 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 dc21438..65235a3 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 2035452..4491f89 100644 --- a/p/PiCat.pi +++ b/p/PiCat.pi @@ -1,2 +1,2 @@ main => - println("Hello World"). + println('Hello World').