The first import mentioned in the Tour of Ceylon is
import math { sqrt, pi, Complex }
What do I need to put in my modules.ceylon
in order to be able to import this math
module? It is not either of these:
module my_module "1.0.0" {
import math "1.3.3";
}
module my_module "1.0.0" {
import ceylon.math "1.3.3";
}