From Second Life Wiki
| Languages: |
English |
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
- The correct title of this article is print. The initial letter is shown capitalized due to technical restrictions.
Examples//Make the server beep on click string bell = "%07"; default { state_entry() { bell = llUnescapeURL(bell); } touch_start(integer a) { print(bell); } } |

