blob: 0899744b2ebe0ce0ab041de3dc29cd1fa68ef8ee [file] [log] [blame]
package samples.math;
public class Math {
public float add(float a, float b) {
return a+b;
}
}