Skip to content

Instantly share code, notes, and snippets.

@enujo
Created January 13, 2017 03:17
Show Gist options
  • Save enujo/59daef97db70ff85d766fdc4b64142d2 to your computer and use it in GitHub Desktop.
Save enujo/59daef97db70ff85d766fdc4b64142d2 to your computer and use it in GitHub Desktop.
package com.tistory.luahius;
public class Math {
public int MyMath(int x, int y){
return x+y;
}
public static void main(String[] args){
Math m = new Math();
System.out.println(m.MyMath(10,10)==20);
}
}
class testCode {
testCode(){
Math m = new Math();
System.out.println(m.MyMath(10,10)==20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment