Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / test_hex.nit
1 print "0".to_hex
2 print "1".to_hex
3 print "a".to_hex
4 print "A".to_hex
5 print "F".to_hex
6 print "A00".to_hex
7 print "0100".to_hex
8 print "ABC".to_hex
9
10 print 0.to_hex
11 print 1.to_hex
12 print 10.to_hex
13 print 16.to_hex
14 print 2560.to_hex
15 print 256.to_hex
16 print 2748.to_hex