Sort numbers help

hey , i need help with how can i sort numbers from smallest to largest in loliscript i hope someone help me

In LoliScript you can’t. Or at least, it’s going to be really hard. I suggest using the BEING SCRIPT statement and doing it in javascript.

In LoliCode (since you can write C#) it’s as simple as

List<string> ordered = unordered.OrderBy(i => int.Parse(i)).ToList();

where unordered is the name of your original list.