1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-05-04 04:28:10 +02:00

Merge pull request #2080 from pranitbauva1997/arrays

[julia/en] Add different array declaration syntax
This commit is contained in:
Adam Bard 2016-01-06 03:10:30 +08:00
commit c543ded329

View File

@ -151,12 +151,16 @@ a = Int64[] # => 0-element Int64 Array
# 1-dimensional array literals can be written with comma-separated values.
b = [4, 5, 6] # => 3-element Int64 Array: [4, 5, 6]
b = [4; 5; 6] # => 3-element Int64 Array: [4, 5, 6]
b[1] # => 4
b[end] # => 6
# 2-dimentional arrays use space-separated values and semicolon-separated rows.
matrix = [1 2; 3 4] # => 2x2 Int64 Array: [1 2; 3 4]
# Arrays of a particular Type
b = Int8[4, 5, 6] # => 3-element Int8 Array: [4, 5, 6]
# Add stuff to the end of a list with push! and append!
push!(a,1) # => [1]
push!(a,2) # => [1,2]