diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-10-18 12:03:28 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-10-18 12:03:28 -0500 |
commit | 024818d84448139d6958c65273f96f7bc69b09d0 (patch) | |
tree | b8320b17f756dcbefb4e234a8e9db79fa5edb8ba | |
parent | 6e3c5d677f2f6bae31634673daf6170e22aad24f (diff) | |
parent | 56e8508a303950ea7f3c9da47773c00a877d6625 (diff) |
Merge pull request #1547 from bharrisau/patch-1
Update Julia variable names
-rw-r--r-- | julia.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index c5089dc3..cba7cd45 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -117,11 +117,11 @@ catch e println(e) end -# Variable names start with a letter. +# Variable names start with a letter or underscore. # After that, you can use letters, digits, underscores, and exclamation points. SomeOtherVar123! = 6 # => 6 -# You can also use unicode characters +# You can also use certain unicode characters ☃ = 8 # => 8 # These are especially handy for mathematical notation 2 * π # => 6.283185307179586 |