From 5082129387b2a1c0c59790ef4a666f31da5486e1 Mon Sep 17 00:00:00 2001 From: MrBrain295 <66077254+MrBrain295@users.noreply.github.com> Date: Sun, 7 Nov 2021 14:29:22 -0600 Subject: [PATCH] Revert "Migrate to double quotes" (#1168) --- 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 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').