-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit marks the end of the start; all basic functionalities have been implemented. I haven't, however, spent much time making sure I was programming neatly and according to the guidelines set by the course I'm following. Furthermore, there are quite a lot of partially right or misbehaving functions that require some polishing. Anyway, I'm very happy I managed to accomplish this in this relatively small amount of time. I wanted to rush this first part since I don't really like this course and just want to be over with it. But now that I have accomplished this, I am starting to like it more!
- Loading branch information
JVKran
committed
May 2, 2021
1 parent
430ec7a
commit dda7faf
Showing
6 changed files
with
37 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
variable result is 6 plus 5 multiplied_by 2 | ||
variable otherResult is result multiplied_by 4 | ||
variable result is 6 plus 5 multiplied_by 2 ; | ||
variable otherResult is result multiplied_by 4 ; | ||
task add lhs , rhs consists_of ; | ||
variable res is lhs plus rhs ; | ||
flush res ; | ||
variable sum is execute add ( result , otherResult ) |
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