summaryrefslogtreecommitdiff
path: root/test/const-map.mnml
blob: b63b68bebee30612258210136ca2d17e1e15003a (plain)
1
2
3
4
5
6
7
8
9
10
11
const map: [string][string or integer or bool] = [
  "first" = 1 <= 2,
  "second" = "two",
  "third" = "3",
  "fourth" = 4 > 3,
/*  "fifth" = (): void {
    return "5."
  },*/
  "sixth" = 20_000,
  "seventh" = 20.02,
]