summaryrefslogtreecommitdiff
path: root/test.rs
blob: 56e8bf4b9f4eb75e16625845816012c0b2dfd291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
testing comments
/* /* /* /* /* hello */ */ */ */ */
yay
*/
use std::fs::File;
use std::io::{Result, BufRead, BufReader};
fn main() -> Result<()> {
	let file = File::open("test.rs")?;
	let mut reader = BufReader::new(file);
	loop {
		let mut line = String::new();
		if reader.read_line(&mut line)? == 0 {
			// reached end of file
			break;
		}
		print!("{}", line);
	}
	print!("
	string
	");
	Ok(())
}