Lists
=====
```Example from 1 languages: JavaScript
const list = [1,2,3]
```
```Example from 2 languages: Python, Speedie
myList = [1, 2, 3, 4, 5]
```
```Example from 1 languages: Go
myList := []int{1, 2, 3}
```
```Example from 1 languages: JSON
[1, 2, 3]
```
```Example from 1 languages: Lua
myList = {1, 2, 3}
```
```Example from 1 languages: Elixir
my_list = [1, 2, 3, 4, 5]
```
```Example from 1 languages: Gleam
let numbers = [1, 2, 3, 4, 5]
```
```Example from 1 languages: Lil
myList:(1,2,3)
end
```
```Example from 2 languages: REBOL, Boron
my-list: [1 two 3.0 "four"]
```
```Example from 1 languages: Wax
(let x (arr (vec 3 float)))
```
```Example from 1 languages: SAKO
TABLICA(4): B
1 2.0 3.4
4.1 5.6
*
```
```Example from 1 languages: Object File Format
3 0 1 2 # Example: face definition with vertex indices
```
```Example from 1 languages: Bel
; here is a list of a, b, and c:
(a . (b . (c . nil)))
; can be written as
(a b c)
```
```Example from 1 languages: Uniform eXchange Format
[1 2]
```
```Example from 1 languages: Ion
null.list // A null list value
[] // An empty list value
[1, 2, 3] // List of three ints
[ 1 , two ] // List of an int and a symbol
[a , [b]] // Nested list
[ 1.2, ] // Trailing comma is legal in Ion (unlike JSON)
[ 1, , 2 ] // ERROR: missing element between commas
```
```Example from 1 languages: BALGOL
ARRAY MONTHDAYS(12) = (31,28,31,30,31,30,31,31,30,31,30,31)$
```
*
Languages *with* Lists include JavaScript, Python, Go, JSON, Lua, Elixir, GraphQL, Gleam, EDN, Janet, Lil, REBOL, Wax, fp, SAKO, Aardvark, PLY, Speedie, Object File Format, Bel, Boron, Uniform eXchange Format, Ion, hecl, BALGOL
*
Languages *without* Lists include progsbase, mmCIF
*
View all concepts with or missing a *hasLists* measurement
http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasLists&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22null%22%2C%22data%22%3A%22hasLists%22%2C%22origData%22%3A%22hasLists%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D missing
http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasLists&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22!null%22%2C%22data%22%3A%22hasLists%22%2C%22origData%22%3A%22hasLists%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D with
*
Read more about Lists on the web: 1.
https://en.wikipedia.org/wiki/List_(abstract_data_type) 1.
Built with Scroll v178.2.3