-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev p3.0/event bag #814
base: major/P3.0
Are you sure you want to change the base?
Dev p3.0/event bag #814
Conversation
… instead of round robin fashion
m1 = new M1((sender= this, num= 0)); | ||
i = 0; | ||
prev = 0; | ||
while (i < 100) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This loop is unnecessary??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was hoping that would make events stay in the inbox longer. Doesn't seem work, will remove it
entry (payload: (sender: Main, num: int)) { | ||
print format("sender: {0}", payload.sender); | ||
i = payload.num; | ||
j = i + 10; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we even need the variable j
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will remove that
No description provided.