update NOTICE and LICENSE
[nit.git] / tests / test_equal.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2004-2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17
18 var i: Int
19 var j: Int
20 var a: Object
21 var b: Object
22 if 1 == 1 then printn("ok") else printn("fail")
23 if not 1 == 2 then printn("ok") else printn("fail")
24 if 1 is 1 then printn("ok") else printn("fail")
25 if not 1 is 2 then printn("ok") else printn("fail")
26 i = 1
27 if i == 1 then printn("ok") else printn("fail")
28 if not i == 2 then printn("ok") else printn("fail")
29 if i is 1 then printn("ok") else printn("fail")
30 if not i is 2 then printn("ok") else printn("fail")
31 j = 1
32 if i == j then printn("ok") else printn("fail")
33 if i is j then printn("ok") else printn("fail")
34 a = 1
35 if a == i then printn("ok") else printn("fail")
36 if a is i then printn("ok") else printn("fail")
37 a = i
38 if a == i then printn("ok") else printn("fail")
39 if a is i then printn("ok") else printn("fail")
40 b = a
41 if a == b then printn("ok") else printn("fail")
42 if a is b then printn("ok") else printn("fail")
43 b = i
44 if a == b then printn("ok") else printn("fail")
45 if a is b then printn("ok") else printn("fail")
46 b = 1
47 if a == b then printn("ok") else printn("fail")
48 if a is b then printn("ok") else printn("fail")