roc/compiler/load/tests/fixtures/build/interface_with_deps/Dep1.roc
2020-03-06 18:24:37 -05:00

15 lines
198 B
Text

interface Dep1
exposes [ three, str, Unit, Identity, one, two ]
imports [ Dep3.Blah.{ foo } ]
one = 1
two = foo
three = 3.0
str = "string!"
Unit : [ Unit ]
Identity a : [ Identity a ]