Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
Object Class new: MyClass(a, b)
|
||||
|
||||
MyClass method: setA(value) value := a ;
|
||||
MyClass method: setB(value) value := b ;
|
||||
|
||||
MyClass method: initialize(v, w) self setA(v) self setB(w) ;
|
||||
|
||||
MyClass new(1, 2) // OK : An immutable object
|
||||
MyClass new(1, 2) setA(4) // KO : An immutable object can't be updated after initialization
|
||||
MyClass new(ListBuffer new, 12) // KO : Not an immutable value.
|
||||
ListBuffer new Constant new: T // KO : A constant cannot be mutable.
|
||||
Channel new send(ListBuffer new) // KO : A mutable object can't be sent into a channel.
|
||||
Loading…
Add table
Add a link
Reference in a new issue