From 7e8ee5ed9cad6484e9f13f81731b102ced58402e Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Tue, 9 Jul 2019 15:14:04 -0400 Subject: Init. --- rust-book/variables/src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 rust-book/variables/src/main.rs (limited to 'rust-book/variables/src/main.rs') diff --git a/rust-book/variables/src/main.rs b/rust-book/variables/src/main.rs new file mode 100755 index 0000000..d632530 --- /dev/null +++ b/rust-book/variables/src/main.rs @@ -0,0 +1,6 @@ +fn main() { + let a: [i32; 5] = [1, 2, 3, 4, 5]; + let first = a[0]; + let second = a[1]; + println!("{} {}", first, second); +} -- cgit v1.2.3