Last active
May 5, 2020 16:44
-
-
Save mihalycsaba/4badc18139cad3a82f261f6ade259b81 to your computer and use it in GitHub Desktop.
this
This file contains hidden or 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
class RR { | |
int first = 22; | |
int second = 33; | |
RR.garcia(int a, int b) { | |
a = this.first; | |
second = b; | |
print(first); | |
print(second); | |
print(a); | |
print(b); | |
} | |
RR.louis(int first, int second) { | |
print(first); | |
first = this.first; | |
print(first); | |
print(this.second); | |
} | |
} | |
void main() { | |
RR.garcia(100, 200); | |
RR.louis(1, 2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment