RosettaCodeData/Task/Unicode-variable-names/Rust/unicode-variable-names.rust

9 lines
133 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
#![feature(non_ascii_idents)]
2017-09-23 10:01:46 +02:00
#![allow(non_snake_case)]
2014-04-02 16:56:35 +00:00
fn main() {
2015-11-18 06:14:39 +00:00
let mut Δ: i32 = 1;
2013-10-27 22:24:23 +00:00
Δ += 1;
2014-04-02 16:56:35 +00:00
println!("{}", Δ);
2013-10-27 22:24:23 +00:00
}