innula

Untitled

Jan 3rd, 2013
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     state_entry()
  4.     {
  5.        integer n = 3;
  6.        llOwnerSay((string)(!(n%2)));
  7.        if (!(n%2)){
  8.            llOwnerSay("even");
  9.         }
  10.         else {
  11.             llOwnerSay("odd");
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment