2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-10-14 21:07:11 -04:00
|
|
|
#![feature(slicing_syntax)]
|
2014-05-22 11:28:01 -07:00
|
|
|
|
2013-07-11 12:05:17 -07:00
|
|
|
pub fn main() {
|
2014-02-01 15:52:41 +11:00
|
|
|
let x = [ [true], ..512 ];
|
2014-04-21 17:58:52 -04:00
|
|
|
let y = [ 0i, ..1 ];
|
2013-03-25 15:46:10 -07:00
|
|
|
|
2014-10-14 21:07:11 -04:00
|
|
|
print!("[");
|
|
|
|
for xi in x.iter() {
|
|
|
|
print!("{}, ", (*xi)[]);
|
|
|
|
}
|
|
|
|
println!("]");
|
|
|
|
println!("{}", y[]);
|
2012-08-03 18:48:17 -07:00
|
|
|
}
|