Share Pastebin
Guest
Public paste!

Az

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.35 KB | Hits: 14 | Expires: Never
Copy text to clipboard
  1. From this:
  2.  
  3. [TestCategory]
  4. Yes, text.
  5. More text.
  6. Test text.
  7. [AnotherCategory]
  8. Yep. Text.
  9.  
  10.  
  11. To this:
  12.  
  13. library TestLibrary initializer Init
  14.  
  15. function Init takes nothing returns nothing
  16.   call BJDebugMsg("Yes, text.")
  17.   call BJDebugMsg("More text.")
  18.   call BJDebugMsg("Test text.")
  19.   call BJDebugMsg("Yep. Text.")
  20. endfunction
  21.  
  22. endlibrary