blob: cba7f3fdf6aa4425848758df3839cb53980ea5d0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- Just new test. This would work without the bug being fixed.
a = '\x10ffff'
b = "Hello\x000000002c\32World\o00000000000000000000000000000000041"
c = "♯\00\&00\0"
main = do print a
putStrLn b
print c
|