cqframework / cqf-exercises

Exercises for CQL
Apache License 2.0
15 stars 15 forks source link

Answer on non-recursive flatmap incorrect #1

Closed joshcds closed 2 years ago

joshcds commented 2 years ago

https://github.com/cqframework/cqf-exercises/blob/59dd08fee775da6c329c107e5cd590410bec7f2f/input/cql/Exercises04Key.cql#L238

Currently looks like: = { 1, 2, 3, { 'a', 'b' }, 'x', 'y' }

Think it should be: = { 1, 2, 3, { 'a', 'b' }, {'x', 'y'} }

@brynrhodes

brynrhodes commented 2 years ago

Fixed, thank you!