Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. if (isSinglePost and isLoggedIn) {
  2. // do something
  3. }
  4.  
  5. if ( expensive_function (a) && another_expensive_function (b) ) {}
  6.  
  7. if ( a != 0 && 1.0 / a > 0.3) {}
  8.  
  9. if ( expensive_function (a) & another_expensive_function (b) ) {}
  10.  
  11. #define A_BEZ (A_LEFT | A_CENTER | A_APPROX)
  12.  
  13. if (i < n && a[i] < k)
  14.  
  15. INT a := ...; # REF INT variable a becomes ... #
  16. INT b := ...;
  17. IF a < b THEN a ELSE b FI := ...; # Assigment to a condition LHS #
  18. (a < b | a | b ) := ...;
  19. (node = nil | list.head | node.next ) := ...;
  20. BOOL c = a = b OR IF i < n AND IF v[i] < a THEN b > a ELSE a < v[i] FI;
  21. BOOL c = a = b ∨ ( i < n ∧ v[i] < a | b > a | a < v[i]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement