mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
15 lines
198 B
Text
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 ]
|