Skip to content

Instantly share code, notes, and snippets.

@dustinmartin
Created April 13, 2010 00:32
Show Gist options
  • Save dustinmartin/364172 to your computer and use it in GitHub Desktop.
Save dustinmartin/364172 to your computer and use it in GitHub Desktop.
A Gist example for a few languaes I use
<cfset greeting = "Hello World">
<cfoutput>#greeting#</cfoutput>
function sayHello(){
alert("Hello World");
}
object HelloWorld extends Application {
Console.println("Hello World")
}
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