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
6
Task/Variables/Pony/variables-2.pony
Normal file
6
Task/Variables/Pony/variables-2.pony
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
var x: I32 = 10
|
||||
var y: I32 = x = 20
|
||||
try
|
||||
Fact(x == 20) // x gets the new value of 20
|
||||
Fact(y == 10) // y gets the old value of x which is 10
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue