Unicode strings: Difference between revisions

Content added Content deleted
Line 1,269: Line 1,269:
WDTE supports Unicode in both identifiers and strings. WDTE is very loose about identifier rules. If it doesn't conflict with a syntactic structure, such as a keyword, literal, or operator, than it's allowed as an identifier.
WDTE supports Unicode in both identifiers and strings. WDTE is very loose about identifier rules. If it doesn't conflict with a syntactic structure, such as a keyword, literal, or operator, than it's allowed as an identifier.


<lang WDTE>プリント t => print t;
<lang WDTE>プリント t => io.writeln io.stdout t;


main => プリント 'これは実験です。';</lang>
main => プリント 'これは実験です。';</lang>