Main public logs

From ROBLOX Wiki
Jump to navigationJump to search

Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:12, 11 December 2024 PRG talk contribs created page String (Created page with "{{CatUp|Properties}} __TOC__ == Introduction == Strings are sequences of characters, letters, numbers, letters AND numbers, symbols, and so forth. A script of <pre> x = "Hi mom" y = "123456" z = "Bob12345" n = "abc!@#$%^&*()123456789" print (x) print (y) print (z) print (n) </pre> will print in the output bar Hi mom, 123456, Bob12345, and abc!@#$%^&*()123456789 . <b>Strings</b> differ from Numbers in that you can't allocate a name like "Bob" to numbers....")