mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-29 14:44:56 +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");
|