5 lines
86 B
Text
5 lines
86 B
Text
|
|
fn main() {
|
||
|
|
let dictionary = ["foo": 1, "bar": 2]
|
||
|
|
println("{}", dictionary)
|
||
|
|
}
|