Unicode strings: Difference between revisions

Content added Content deleted
(added notes for D)
(Update WDTE example for language overhaul.)
Line 1,293: Line 1,293:
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 => io.writeln io.stdout t;
<lang WDTE>let プリント t => io.writeln io.stdout t;


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


=={{header|zkl}}==
=={{header|zkl}}==