mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
set z = "foo bar baz"
|
|
set z1 = z & " meow"
|
|
set z1 = z1 && "woof"
|
|
put z
|
|
put z1
|
|
put chars("Macromedia", 6, 6)
|
|
put chars("Macromedia", 6, 10)
|
|
put chars("Macromedia", -1, 15)
|
|
if z1 contains "MeÍW" then
|
|
put "Contains"
|
|
else
|
|
put "Doesn't contain"
|
|
end if
|