You can also make a whole module public, to allow access
This commit is contained in:
parent
41eb9a9dc0
commit
0a692c01de
@ -1,4 +1,2 @@
|
|||||||
mod geometry;
|
mod geometry;
|
||||||
mod math;
|
pub mod math;
|
||||||
|
|
||||||
pub use math::Point3;
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
use hello::Point3;
|
use hello::math::Point3;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let p = Point3::new(0.0, 0.0, 0.0);
|
let p = Point3::new(0.0, 0.0, 0.0);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user