Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
5
Task/Collections/Sidef/collections-1.sidef
Normal file
5
Task/Collections/Sidef/collections-1.sidef
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# creating an empty array and adding values
|
||||
var a = [] #=> []
|
||||
a[0] = 1 #=> [1]
|
||||
a[3] = "abc" #=> [1, nil, nil, "abc"]
|
||||
a << 3.14 #=> [1, nil, nil, "abc", 3.14]
|
||||
5
Task/Collections/Sidef/collections-2.sidef
Normal file
5
Task/Collections/Sidef/collections-2.sidef
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# creating an empty hash
|
||||
var h = Hash() #=> Hash()
|
||||
h{:foo} = 1 #=> Hash("foo"=>1)
|
||||
h{:bar} = 2.4 #=> Hash("foo"=>1, "bar"=>2.4)
|
||||
h{:bar} += 3 #=> Hash("foo"=>1, "bar"=>5.4)
|
||||
14
Task/Collections/Sidef/collections-3.sidef
Normal file
14
Task/Collections/Sidef/collections-3.sidef
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# create a simple pair
|
||||
var p = Pair('a', 'b')
|
||||
say p.first; #=> 'a'
|
||||
say p.second; #=> 'b'
|
||||
|
||||
# create a pair of pairs
|
||||
var pair = 'foo':'bar':'baz':(); # => Pair('foo', Pair('bar', Pair('baz', nil)))
|
||||
|
||||
# iterate over the values of a pair of pairs
|
||||
loop {
|
||||
say pair.first; #=> 'foo', 'bar', 'baz'
|
||||
pair = pair.second;
|
||||
pair == nil && break;
|
||||
}
|
||||
15
Task/Collections/Sidef/collections-4.sidef
Normal file
15
Task/Collections/Sidef/collections-4.sidef
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# creating a struct
|
||||
struct Person {
|
||||
String name,
|
||||
Number age,
|
||||
String sex
|
||||
}
|
||||
|
||||
var a = Person("John Smith", 41, :man)
|
||||
|
||||
a.age += 1 # increment age
|
||||
a.name = "Dr. #{a.name}" # update name
|
||||
|
||||
say a.name #=> "Dr. John Smith"
|
||||
say a.age #=> 42
|
||||
say a.sex #=> "man"
|
||||
Loading…
Add table
Add a link
Reference in a new issue