Add another implementation to e.rs
@ -1,6 +1,13 @@
#![feature(main)]
#[cfg(feature = "functional")]
#[main]
fn e() {
std::iter::repeat('e').for_each(|e| print!("{}", e));
}
#[cfg(not(feature = "functional"))]
fn e() -> ! {
loop {
print!("e");