Revert "Migrate to double quotes" (#1168)

This commit is contained in:
MrBrain295 2021-11-07 14:29:22 -06:00 committed by GitHub
parent ad376dc345
commit 5082129387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -7,4 +7,4 @@ Parameters
Static Variables
Local variables
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
plz console.loge with "Hello World"
plz console.loge with 'Hello World'

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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