diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-08 16:17:48 +0100 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-08 16:17:48 +0100 |
commit | 72ae07dd15b101cca30584064891d4b86b11160e (patch) | |
tree | a80175e9025016c30a14ed85043f475b4f96fc0b | |
parent | a4dff800da4a9b6109760945bacce6185c39fdbe (diff) | |
parent | 0f4760f9eacc787de61e60b333a5ce8b3aa2321a (diff) |
Merge pull request #520 from brk00/julia-test
Moved println(...) from 'Variables and Collections' section
-rw-r--r-- | julia.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index 3bc660cf..b8e24b39 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -92,13 +92,13 @@ false # Another way to format strings is the printf macro. @printf "%d is less than %f" 4.5 5.3 # 5 is less than 5.300000 +# Printing is easy +println("I'm Julia. Nice to meet you!") + #################################################### ## 2. Variables and Collections #################################################### -# Printing is easy -println("I'm Julia. Nice to meet you!") - # You don't declare variables before assigning to them. some_var = 5 #=> 5 some_var #=> 5 |