Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Collections/Fancy/collections-1.fancy
Normal file
8
Task/Collections/Fancy/collections-1.fancy
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# creating an empty array and adding values
|
||||
|
||||
a = [] # => []
|
||||
a[0]: 1 # => [1]
|
||||
a[3]: 2 # => [1, nil, nil, 2]
|
||||
|
||||
# creating an array with the constructor
|
||||
a = Array new # => []
|
||||
9
Task/Collections/Fancy/collections-2.fancy
Normal file
9
Task/Collections/Fancy/collections-2.fancy
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# creating an empty hash
|
||||
|
||||
h = <[]> # => <[]>
|
||||
h["a"]: 1 # => <["a" => 1]>
|
||||
h["test"]: 2.4 # => <["a" => 1, "test" => 2.4]>
|
||||
h[3]: "Hello" # => <["a" => 1, "test" => 2.4, 3 => "Hello"]>
|
||||
|
||||
# creating a hash with the constructor
|
||||
h = Hash new # => <[]>
|
||||
Loading…
Add table
Add a link
Reference in a new issue