From 1eb72bf28c617727e049bc94ad130c2a9bcdfd9d Mon Sep 17 00:00:00 2001 From: MrBrain295 <66077254+MrBrain295@users.noreply.github.com> Date: Sun, 7 Nov 2021 14:34:25 -0600 Subject: [PATCH] Revert "Revert "Migrate to double quotes" (#1168)" (#1169) This reverts commit 5082129387b2a1c0c59790ef4a666f31da5486e1. --- c/Centura.centura | 2 +- d/DogeScript.djs | 2 +- g/Google Apps Script.gs | 2 +- h/Hack.hh | 2 +- h/Hubot.coffee | 2 +- k/Karel.kl | 2 +- p/PLSQL.sql | 2 +- p/PiCat.pi | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) 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").