===== >>> main.whiley import string from js::core type Box is { T content } public export method test(): Box box = { content: "hello" } assert box.content == (string) "hello" >>> js/core.whiley package js public type string is int[] where true ---