Advertisement
Guest User

Untitled

a guest
Aug 9th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function testmy();
  2. _setK();
  3. _callsub();
  4. ## disp(K) uncommenting this removes the bug!
  5.  
  6. function _callsub();
  7. disp(K) ## says that K is unknown!
  8. endfunction
  9.  
  10. endfunction
  11.  
  12.  
  13.  
  14. function _setK();
  15. assignin("caller", "K", 1);
  16. endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement