Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. static void Job1(Args _args)
  2. {
  3. str string1 = "STACKOVERFLOW";
  4. ;
  5. print string1;
  6. pause;
  7. }
  8.  
  9. static void Job2(Args _args)
  10. {
  11. str string1 = "STACKOVERFLOW";
  12.  
  13. print string1;
  14. pause;
  15. }
  16.  
  17. void method1()
  18. {
  19. CustTable custTable;
  20.  
  21. custTable = CustTable::find("cust");
  22. }
  23.  
  24. void method1()
  25. {
  26. CustTable custTable;
  27.  
  28. if (custTable)
  29. {
  30. // stuff happens
  31. }
  32. }
  33.  
  34. CustTable method1()
  35. {
  36. custTable = CustTable::find("cust"); // custTable may exists in the context
  37. return custTable;
  38. }
  39.  
  40. CustTable method1()
  41. {
  42. return CustTable::find("cust");
  43. }
  44.  
  45. void method1()
  46. {
  47. info("This should work, ya?");
  48. }
Add Comment
Please, Sign In to add comment