Last active
January 3, 2016 19:29
-
-
Save ctrlShiftBryan/8508749 to your computer and use it in GitHub Desktop.
This is a test gist!
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
| public class MyTest{ | |
| public string HelloEveryone(){ | |
| var x = 1; | |
| return "Hello Everyone"; | |
| } | |
| } |
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
| <!DOCTYPE html> | |
| <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| </head> | |
| <body> | |
| <!-- This is a comment --> | |
| <p>three&&&spaces</p> | |
| </body> | |
| </html> |
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
| define( | |
| //The name of this module | |
| 'module', | |
| //The array of dependencies | |
| ['someOtherModule'], | |
| //The function to execute when all dependencies have loaded. The | |
| //arguments to this function are the array of dependencies mentioned | |
| //above. | |
| function (someOtherModule) { | |
| var load; | |
| load = function(){ | |
| var x = 0; | |
| someOtherModule.executeSomething(); | |
| console.log('Hello World'); | |
| } | |
| return { | |
| load: load | |
| }; | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment