Skip to content

Instantly share code, notes, and snippets.

@brk3
Created July 15, 2022 09:01
Show Gist options
  • Save brk3/250de4b0e11aa97665fe37a40a1d6be1 to your computer and use it in GitHub Desktop.
Save brk3/250de4b0e11aa97665fe37a40a1d6be1 to your computer and use it in GitHub Desktop.
cuelang map definitions
// https://cuelang.org/play/?id=62lD4w9v-PB#cue@export@cue
#foo: {
mymap: [string]: string
}
#bar: [key=string]: {
[string]: string
}
foo1: #foo & {
mymap: {
"hello": "world"
}
}
bar1: #bar & {
newmap: {
hello: "world"
paul: "bourke"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment