go-dirty.git

ref: master

./example.drt


(
	('map' # array of pairs
		(
			('π' 3.14) 
			('e' 2.73)
			('h' 10,000·) # dozenal = 12^4 in decimal
			('one' 1) # decimal integer
			('positivity' true)
			('negativity' false)
			('i don’t know' null)
			('256' 0xff)
			('7' 0b111)
			(7 'is not the same')
			#(0b111 'but this would be')
			('execute' 0o755)
			('ice point' 16↋7·6)
			('dozenal digits' (1· 2· 3· 4· 5· 6· 7· 8· 9· ↊· ↋·))
			('dozenal negative' -10·1)
			('escaped' 'i won\'t say but i will \tit\nand this will be in new line')
			('scientific' (7e27 7e-27))
			('cold' -10)
			('imagine' (10+8i 8-10i ↊·+8·i 8·-↊·i))
		)
	)
	('array' (1 2 3 'some text'))
	('mapception' (('one' 1) ('two' 2)))
)