Unicode variable names: Difference between revisions

New post.
(→‎Insitux: inclusion)
(New post.)
Line 204:
{{out}}
<pre>2</pre>
 
=={{header|C++}}==
<syntaxhighlight lang="c++">
#include <cstdint>
#include <iostream>
#include <string>
 
int main() {
uint32_t Δ = 1;
double π = 3.14159;
std::string 你好 = "Hello";
Δ++;
std::cout << Δ << " :: " << π << " :: " << 你好 << std::endl;
}
</syntaxhighlight>
{{ out }}
<pre>
2 :: 3.14159 :: Hello
</pre>
 
=={{header|Clojure}}==
891

edits