Added some utf8 symbols and better description of utf8 support.

This commit is contained in:
Bruce Hill 2019-02-02 19:43:53 -08:00
parent 2e52c1a7a8
commit 3e6b3983fc

View File

@ -217,14 +217,14 @@ I think "chihuahuas" are worse than "corgis"
"Howdy pardner" is what she said "Howdy pardner" is what she said
# The language only reserves []{}().,:;$\ as special characters, so actions # The language only reserves []{}().,:;$\ as special characters, so actions
can have really funky names! and variables can use symbols freely:
(>> $foo_bar @&' -->< $ @&_~-^-~_~-^ $1 !) means: (>> $(∐) @&' -->< $ @&_~-^ ⊗⊞∰ $1 !) means:
say $foo_bar say $(∐)
say $ say $
say $1 say $1
>> "wow" @&' -->< "so flexible!" @&_~-^-~_~-^ "even numbers can be variables!" ! >> "wow" @&' -->< "so flexible!" @&_~-^ ⊗⊞∰ "even numbers can be variables!" !
# There's also full unicode support # You can also use unicode in variable and action names:
$こんにちは = "こんにちは" $こんにちは = "こんにちは"
($ と言う) means "\($)世界" ($ と言う) means "\($)世界"
say ($こんにちは と言う) say ($こんにちは と言う)