Test Script.NET
[Main]
[More Examples]
[On-Line Manual]
[What is Script.NET (in Russian)]
[Irony Compiler Construction Kit]
For security purposes not all features are available in WEB version
The output will appear at the bottom of the page!
Download Latest Version
a = [17,-2, 0,-3, 5, 3,1, 2, 55]; for (i=0; i < a.Length; i=i+1) for (j=i+1; j < a.Length; j=j+1) if (a[i] > a[j] ) { temp = a[i]; a[i] = a[j]; a[j] = temp; } s = 'Results:'; for (i=0; i < a.Length; i++) s = s + ' ' + a[i]; Console.WriteLine(s);