Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created May 23, 2015 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/27bf79434fc0f9ed52a3 to your computer and use it in GitHub Desktop.
Save shigemk2/27bf79434fc0f9ed52a3 to your computer and use it in GitHub Desktop.
object HelloWorldTest {
def test() = {
"This is the test."
}
}
public class ScalaTest {
public static void main(String... args){
System.out.println( HelloWorldTest.test());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment