package org.simantics.scl.compiler.tests.experimentation; public class TestEquals { public static boolean eqInt(int a, int b) { return a==b; } public static boolean eqDouble(double a, double b) { return a==b; } public static boolean eqObject(Object a, Object b) { return a.equals(b); } }