Guest User

Untitled

a guest
Dec 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. type Student record {
  2. int score = 0;
  3. };
  4.  
  5. type Person record {
  6. int age = 0;
  7. Student std;
  8. };
  9.  
  10. function increment(Person p) {
  11. lock {
  12. p.std.score = p.std.score + 1;
  13. }
  14. }
Add Comment
Please, Sign In to add comment