Browse Source

Use single quotes instead

Daniel Lo Nigro 11 years ago
parent
commit
b1e5dd3f27
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -22,7 +22,7 @@ a script calling `log('Hello World!')`.
     
     engine.Execute(@"
       function hello() { 
-        log(""Hello World"");
+        log('Hello World');
       };
       
       hello();