mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-11 03:20:21 +00:00
8 lines
146 B
Text
8 lines
146 B
Text
# Simplest test: direct tags in if-else without Err wrapper
|
|
main : [TagA, TagB]
|
|
main =
|
|
if True {
|
|
TagA
|
|
} else {
|
|
TagB
|
|
}
|