Skip to content

Instantly share code, notes, and snippets.

@benjic
Created September 20, 2013 21:45
Show Gist options
  • Save benjic/6644359 to your computer and use it in GitHub Desktop.
Save benjic/6644359 to your computer and use it in GitHub Desktop.
A sample use of a GIST to share code segements with other people.
package com.benjica.example
public class ExampleClass {
private final String PLACE = "World";
public static void main(String[] arguments) {
System.out.println("Hello " + PLACE + "!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment