Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Az

By: a guest on Feb 9th, 2010  |  syntax: None  |  size: 0.35 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  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