From 0f4760f9eacc787de61e60b333a5ce8b3aa2321a Mon Sep 17 00:00:00 2001 From: brk0_0 Date: Sat, 8 Feb 2014 13:03:50 -0200 Subject: Moved println() from 'Variables and Collections' section --- julia.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'julia.html.markdown') 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 -- cgit v1.2.3