-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement variable update from function returns
- Loading branch information
1 parent
4c9c882
commit f61fc66
Showing
9 changed files
with
183 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
bool def bool_f1() | ||
bool a = true | ||
bool a = false | ||
return a | ||
end | ||
|
||
num def num_f1() | ||
num a = 5 | ||
num a = 6 | ||
return a | ||
end | ||
|
||
str def str_f1() | ||
str a = "foo" | ||
str a = "bar" | ||
return a | ||
end | ||
|
||
any def any_f1() | ||
any a = 7 | ||
any a = 8 | ||
return a | ||
end | ||
|
||
list def list_f1() | ||
list a = [1, 2, 3] | ||
list a = [4, 5, 6] | ||
return a | ||
end | ||
|
||
dict def dict_f1() | ||
dict a = {'a': 1, 'b': 2, 'c': 3} | ||
dict a = {'d': 4, 'e': 5, 'f': 6} | ||
return a | ||
end |