Merge pull request #1049 from MrBrain295/Double-quotes

Migrate to double quotes
This commit is contained in:
MrBrain295
2021-08-18 14:04:46 -05:00
committed by GitHub
8 changed files with 8 additions and 8 deletions

View File

@@ -7,4 +7,4 @@ Parameters
Static Variables Static Variables
Local variables Local variables
Actions Actions
Call SalMessageBox( 'Hello World','Message',MB_Ok) Call SalMessageBox( "Hello World",'Message',MB_Ok)

View File

@@ -1,3 +1,3 @@
shh such hello dogescript very next-gen wow difficulty shh such hello dogescript very next-gen wow difficulty
plz console.loge with 'Hello World' plz console.loge with "Hello World"

View File

@@ -1,3 +1,3 @@
function helloWorld() { function helloWorld() {
Logger.log('Hello World'); Logger.log("Hello World");
} }

View File

@@ -1,2 +1,2 @@
<?hh <?hh
echo 'Hello World'; echo "Hello World";

View File

@@ -1,3 +1,3 @@
module.exports = (robot) -> module.exports = (robot) ->
robot.respond /hello/i, (msg) -> robot.respond /hello/i, (msg) ->
msg.send 'Hello World' msg.send "Hello World"

View File

@@ -1,4 +1,4 @@
PROGRAM hello_world PROGRAM hello_world
BEGIN BEGIN
WRITE('Hello World', CR) WRITE("Hello World", CR)
END hello_world END hello_world

View File

@@ -1,4 +1,4 @@
begin begin
dbms_output.put_line('Hello World'); dbms_output.put_line("Hello World");
end; end;
/ /

View File

@@ -1,2 +1,2 @@
main => main =>
println('Hello World'). println("Hello World").