Skip to content

Instantly share code, notes, and snippets.

@mihalycsaba
Last active May 5, 2020 16:44
Show Gist options
  • Save mihalycsaba/4badc18139cad3a82f261f6ade259b81 to your computer and use it in GitHub Desktop.
Save mihalycsaba/4badc18139cad3a82f261f6ade259b81 to your computer and use it in GitHub Desktop.
this
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