Daniel Skoog
Results
2
issues of
Daniel Skoog
``` haskell module Main where main = print "\NULvadsomhelst" ``` GHC says: `"\NULvadsomhelst"` Node.js + Haste says: `"\65533\65533vadsomhelst"` The escape code `\65533` is the _Unicode Character 'REPLACEMENT CHARACTER' (U+FFFD)_. This...