Created
April 13, 2010 00:32
-
-
Save dustinmartin/364172 to your computer and use it in GitHub Desktop.
A Gist example for a few languaes I use
This file contains 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
<cfset greeting = "Hello World"> | |
<cfoutput>#greeting#</cfoutput> |
This file contains 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 sayHello(){ | |
alert("Hello World"); | |
} |
This file contains 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
object HelloWorld extends Application { | |
Console.println("Hello World") | |
} |
This file contains 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
SELECT firstName, lastName, birthdate | |
FROM users | |
WHERE firstName = 'Dustin' AND lastName = 'Martin' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment