Created
April 11, 2012 11:11
-
-
Save poochin/2358665 to your computer and use it in GitHub Desktop.
$ coffee -b -c test.user.coffee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| `// ==UserScript== | |
| // @name Test Script | |
| // @match http://*/* | |
| // @version 1.0.0 | |
| // @description CoffeeScript で UserScript を吐き出させるテストです | |
| // ==/UserScript== | |
| ` | |
| (-> | |
| console.log "Hello, World!" | |
| )() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Test Script | |
| // @match http://*/* | |
| // @version 1.0.0 | |
| // @description CoffeeScript で UserScript を吐き出させるテストです | |
| // ==/UserScript== | |
| ;(function() { | |
| return console.log("Hello, World!"); | |
| })(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| // ==UserScript== | |
| // @name Test Script | |
| // @match http://*/* | |
| // @version 1.0.0 | |
| // @description CoffeeScript で UserScript を吐き出させるテストです | |
| // ==/UserScript== | |
| ; (function() { | |
| return console.log("Hello, World!"); | |
| })(); | |
| }).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment