effekt-lang / effekt

A research language with effect handlers and lightweight effect polymorphism

Home Page:https://effekt-lang.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Qualified name using a nested namespace

jiribenes opened this issue · comments

Currently, one needs to write mutable::array::fill for a function fill imported from module mutable/array.
I'd like to write just array::fill instead :)

val arrWithVals: Array[String] = mutable::array::fill(4, "Hello World");

This seems to work well as of current master: 1f0c055, closing.