Skip to content

Instantly share code, notes, and snippets.

@ArvinRokni
Created June 6, 2019 22:47
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 ArvinRokni/2ce800485dc8853d0630fc2b7652f32a to your computer and use it in GitHub Desktop.
Save ArvinRokni/2ce800485dc8853d0630fc2b7652f32a to your computer and use it in GitHub Desktop.
public void example(){
this.example(0, 0.0, "default value");
}
public void example(int a){
this.example(a, 0.0, "default value");
}
public void example(int a, doable b){
this.example(a, b, "default value");
}
public void example(int a, doable b){
println("a = " + a + ", b = " + b + ",c = " + c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment