aboutsummaryrefslogtreecommitdiff
path: root/tests.snug
blob: 88734813cdbc0a405f71606cbd332abe82f09c67 (plain) (blame)
1
2
3
4
5
6
7
8
(test "printing integers" : Int : 37 "37")
(test "printing integers" : Int : -37 "-37")
(test "printing characters" : Char : 'a' "'a'")

(data Tuple (a b) (
	(Tuple a b)))

(test "printing tuples" : Tuple Int Int : (Tuple 1 2) "(1,2)")