mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
remove useless Blank Lines
This commit is contained in:
parent
e96bfe490e
commit
b0bbe39b46
@ -14,7 +14,6 @@ and low-level control, Julia is as easy to learn and use as Python.
|
|||||||
This is based on Julia 1.0.0
|
This is based on Julia 1.0.0
|
||||||
|
|
||||||
```julia
|
```julia
|
||||||
|
|
||||||
# Single line comments start with a hash (pound) symbol.
|
# Single line comments start with a hash (pound) symbol.
|
||||||
#= Multiline comments can be written
|
#= Multiline comments can be written
|
||||||
by putting '#=' before the text and '=#'
|
by putting '#=' before the text and '=#'
|
||||||
@ -362,7 +361,6 @@ else # The else clause is optional too.
|
|||||||
end
|
end
|
||||||
# => prints "some var is smaller than 10"
|
# => prints "some var is smaller than 10"
|
||||||
|
|
||||||
|
|
||||||
# For loops iterate over iterables.
|
# For loops iterate over iterables.
|
||||||
# Iterable types include Range, Array, Set, Dict, and AbstractString.
|
# Iterable types include Range, Array, Set, Dict, and AbstractString.
|
||||||
for animal = ["dog", "cat", "mouse"]
|
for animal = ["dog", "cat", "mouse"]
|
||||||
|
Loading…
Reference in New Issue
Block a user