Created
July 15, 2022 09:01
-
-
Save brk3/250de4b0e11aa97665fe37a40a1d6be1 to your computer and use it in GitHub Desktop.
cuelang map definitions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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