Recurring Addition

Written by Kitsune
integer bob; default { state_entry() { bob = 2 + 2; llSay(0, "The Answer Is " + (string)bob); } touch_start(integer total_number) { bob = bob + 2; llSay(0, "The Answer Is " + (string)bob); } }