Skip to content
Snippets Groups Projects
Commit df65cc7c authored by Ticki's avatar Ticki
Browse files

Nightly message

parent 32d8ccfa
No related branches found
No related tags found
No related merge requests found
extern crate libterm; extern crate libterm;
use libterm::{TermRead, TermWrite, IntoRawMode, Key};
use std::io::{Write, stdout, stdin};
#[cfg(feature = "nightly")]
fn main() { fn main() {
use libterm::{TermRead, TermWrite, IntoRawMode, Key};
use std::io::{Write, stdout, stdin};
let stdin = stdin(); let stdin = stdin();
let mut stdout = stdout().into_raw_mode().unwrap(); let mut stdout = stdout().into_raw_mode().unwrap();
...@@ -35,3 +37,7 @@ fn main() { ...@@ -35,3 +37,7 @@ fn main() {
stdout.show_cursor().unwrap(); stdout.show_cursor().unwrap();
} }
#[cfg(not(feature = "nightly"))]
fn main() {
println!("To run this example, you need to enable the `nightly` feature. Use Rust nightly and compile with `--features nightly`.")
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment