diff --git a/ch02.jl b/ch02.jl index c6f4818..8901ca8 100644 --- a/ch02.jl +++ b/ch02.jl @@ -408,6 +408,14 @@ winsorized_mean(1:10, 5) # Code from section 2.8 +module ExampleModule + +function example() + println("Hello") +end + +end # ExampleModule + import Statistics x = [1, 2, 3] mean(x)