Guest User

Untitled

a guest
Oct 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. a = object.functionName
  2.  
  3. b = object.functionName()
  4.  
  5. leq : int * int -> bool
  6. leq (a, b) = a <= b
  7.  
  8. leq some_pair = some_pair.1 <= some_pair.2
  9.  
  10. say_hi : Unit -> string
  11. say_hi a = "Hi buddy!"
  12.  
  13. variable
  14.  
  15. launch_nukes()
  16.  
  17. void *func_factory(void)
  18. {
  19. return 0;
  20. }
  21.  
  22. void *(*ff)(void);
  23.  
  24. void example()
  25. {
  26. ff = func_factory;
  27. ff = func_factory();
  28. }
  29.  
  30. a = 5
  31. b = a
  32. ...
  33.  
  34. c = X
Advertisement
Add Comment
Please, Sign In to add comment