blob: 2708f25d27b251f1ba55509df2cadc32e39ecf7b (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Import the module and one of its functions
import gleam/io.{println}
pub fn main() {
// Use the function in a qualified fashion
io.println("This is qualified")
// Or an unqualified fashion
println("This is unqualified")
}
|