---
source: crates/aiken-lang/src/parser/expr/list.rs
description: "Code:\n\n[1, 2, ..[]]"
---
List {
location: 0..12,
elements: [
UInt {
location: 1..2,
value: "1",
base: Decimal {
numeric_underscore: false,
},
},
UInt {
location: 4..5,
value: "2",
base: Decimal {
numeric_underscore: false,
},
},
],
tail: Some(
List {
location: 9..11,
elements: [],
tail: None,
},
),
}