summaryrefslogtreecommitdiff
path: root/amounts.py
blob: f3a5898606bea698be22a6251d20e765d6e8a1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from amounts import *

x = Amount ("$123.45")
print x
x = x * 2
print x

y = Amount ("$1000.45")
print x + y

z = Value ("$1000.45")
print y + z

z += x
print z