65yNoRemove 

   
   

Output:

NOT SORTED
1
db	1795.9690977297
id	r1
x	1
y	1
2
db	1794.8796617044
id	r2
x	2
y	2
3
db	999999999
4
db	999999999
5
db	999999999
6
db	999999999
7
db	999999999
8
db	999999999
9
db	0.0
id	b
x	170
y	1789
10
db	1666.2187731508
id	t
x	1836
y	1816
11
db	1770.4747950762
id	k
x	129
y	19
SORTED
1
db	0.0
id	b
x	170
y	1789
2
db	1666.2187731508
id	t
x	1836
y	1816
3
db	1770.4747950762
id	k
x	129
y	19
4
db	1794.8796617044
id	r2
x	2
y	2
5
db	1795.9690977297
id	r1
x	1
y	1
6
db	999999999
7
db	999999999
8
db	999999999
9
db	999999999
10
db	999999999
11
db	999999999
by

Lua online compiler

Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.4. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.

Taking inputs (stdin)

OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.


About Lua

Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.

Syntax help

Variables

  • By default all the variables declared are global variables
  • If the variables are explicitly mentioned as local then they are local variables.
  • Lua is a dynamically typed language and hence only the values will have types not the variables.

Examples


Value TypeDescription
numberRepresents numbers
stringRepresents text
nilDifferentiates values whether it has data or not
booleanValue can be either true or false
functionRepresents a sub-routine
userdataRepresents arbitary C data
threadRepresents independent threads of execution.
tableCan hold any value except nil

Loops

1. While:

While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.


2. Repeat-Until:

Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.


3. For:

For loop is used to iterate a set of statements based on a condition.


Functions

Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.



© Copyright 2025 One Compiler Pvt. Ltd. | Privacy Policy | Terms & Conditions