Repo for all notes and Notebooks Julia!
println("Hello, World!")
# - comment
- Concatenation strings
println("Hello!" * " World!")
- strings are immutable
- Precedence:
- parentheses first
- then exponentiation
- multiplication and division from left to right
- addition and subtraction from left to right
typeof(x)
Array{Integer(2,3)}
- subtypes of (Is Float64 a Subtype of Any?)
Float64 <: Any
- returns true
==(2, 2.0)
- returns true
===(2, 2.0)
- returns false
is(2, 2.0)
is the same as===
and does bit-level comparison
- read in data
file = readdlm('file.csv',sep)
using IJulia
notebook()