How to print lowercase Greek epsilon in SML (using Poly / ML)?
I tried the following:
print "ε"; (* Error-unprintable character found in file *) print "\u03B5"; (* Error-Conversion exception (Invalid string constant) raised while converting \u03B5 to string *)
Is it just not possible? Surely, the task of the terminal is to actually display the character, and therefore, printing the source code of the character on stdout should be possible?
source share