Revert "Migrate to double quotes" (#1168)
This commit is contained in:
parent
ad376dc345
commit
5082129387
@ -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)
|
||||||
|
@ -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'
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
function helloWorld() {
|
function helloWorld() {
|
||||||
Logger.log("Hello World");
|
Logger.log('Hello World');
|
||||||
}
|
}
|
||||||
|
@ -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'
|
||||||
|
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
begin
|
begin
|
||||||
dbms_output.put_line("Hello World");
|
dbms_output.put_line('Hello World');
|
||||||
end;
|
end;
|
||||||
/
|
/
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
main =>
|
main =>
|
||||||
println("Hello World").
|
println('Hello World').
|
||||||
|
Loading…
x
Reference in New Issue
Block a user