Skip to content

Instantly share code, notes, and snippets.

@Ravikharatmal
Last active December 16, 2018 04:17
Show Gist options
  • Save Ravikharatmal/25acae6b409e3aec19688fdb3d49cc0c to your computer and use it in GitHub Desktop.
Save Ravikharatmal/25acae6b409e3aec19688fdb3d49cc0c to your computer and use it in GitHub Desktop.
Java vs. Groovy, Scala, Kotlin - Syntax Comparison of JVM Languages
class MyTestClass{
String name;
public MyTestClass(String name){
this.name = name;
}
public String myMethod(String a, int b){
String result = name + a + b;
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment