mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Use var_os to avoid conversion to String
This commit is contained in:
parent
7560aec66b
commit
8ad18de54c
@ -3,7 +3,7 @@ macro_rules! print_emoji {
|
||||
use console::{style, Emoji};
|
||||
use std::env;
|
||||
let formatstr = format!($fmt, $ex);
|
||||
if env::var("NO_EMOJI").is_ok() {
|
||||
if env::var_os("NO_EMOJI").is_some() {
|
||||
println!("{} {}", style($sign).$color(), style(formatstr).$color());
|
||||
} else {
|
||||
println!(
|
||||
|
Loading…
Reference in New Issue
Block a user