syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / example_time.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 # This module show an example of universal accessors
18 # Remark: implicit accessors are not used here
19
20 # The Time class represents a quantity of time
21 class Time
22 # Internally, the quantity of time is stored in minutes
23 readable writable var _min: Int = 0
24
25 # The quantity ot time (in hours)
26 fun hour: Int
27 do
28 # Need to transform minutes in hours
29 return _min / 60
30 end
31
32 # Set the quantity of time (in hour)
33 fun hour=(i: Int)
34 do
35 # Need to transform hours in minutes
36 _min = i * 60
37 end
38
39 # The quantity of tyme in human readable form (h:m)
40 redef fun to_s: String
41 do
42 var s = "{hour}:{min%60}"
43 return s
44 end
45
46
47 # A null quantity of time
48 init
49 do
50 end
51 end # class Time
52
53
54 # Main part
55
56 var t = new Time
57 # Everything is 0
58 printn("time: ", t, " - min: ", t.min, " - hour: ", t.hour, "\n")
59
60 # Syntaxic sugar is good
61 t.min = 1600
62 printn("time: ", t, " - min: ", t.min, " - hour: ", t.hour, "\n")
63
64 t.hour = 50
65 printn("time: ", t, " - min: ", t.min, " - hour: ", t.hour, "\n")