Created
January 13, 2017 03:17
-
-
Save enujo/59daef97db70ff85d766fdc4b64142d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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