Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagelua
local Fruit = "Apple,Banana,Orange";
local List = Fruit:split(",");
trace(List);

You should see:

...