mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-19 17:31:44 +03:00
5 lines
114 B
Plaintext
5 lines
114 B
Plaintext
let foo = "bar";
|
|
let mut foo = "bar";
|
|
let (foo, bar) = ("baz", "quux");
|
|
let (mut foo, mut bar) = ("baz", "quux");
|