]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/experimentation/TestEquals.java
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / experimentation / TestEquals.java
1 package org.simantics.scl.compiler.tests.experimentation;
2
3 public class TestEquals {
4     public static boolean eqInt(int a, int b) {
5         return a==b;
6     }
7     
8     public static boolean eqDouble(double a, double b) {
9         return a==b;
10     }
11     
12     public static boolean eqObject(Object a, Object b) {
13         return a.equals(b);
14     }
15 }