15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
use math
|
|
use math as arithmetic
|
|
use math.{pi, sqrt as square_root}
|
|
|
|
ExportedType :: distinct i32
|
|
exported :: 1
|
|
circle: f64: pi
|
|
root: f64: 4.0->square_root
|
|
qualified_root: f64: 9.0->arithmetic.sqrt
|
|
|
|
pub {
|
|
ExportedType
|
|
exported
|
|
}
|