Browse Source

refactoring: variable name change, reformating

main
fdai7374 2 years ago
committed by fdai7451
parent
commit
90997fd878
  1. 27
      src/builtins/blahaj.rs

27
src/builtins/blahaj.rs

@ -6,7 +6,7 @@ pub struct Blahaj;
impl Builtin for Blahaj { impl Builtin for Blahaj {
fn execute(&mut self, _: &mut BuiltinConfig, args: Vec<String>) -> Result<(), ShellError> { fn execute(&mut self, _: &mut BuiltinConfig, args: Vec<String>) -> Result<(), ShellError> {
let shonk="
let blahaj = "
((/ ((/
,(((/ ,(((/
/((((( (/ /((((( (/
@ -25,23 +25,24 @@ impl Builtin for Blahaj {
.. .............,*%%%%#%((((/ .. .............,*%%%%#%((((/
**,,,****//*(##((###(#((( **,,,****//*(##((###(#(((
&#(#/#((((((((#"; &#(#/#((((((((#";
if args.is_empty() {
println!("{}",shonk);
}else {
if args[0].eq("-t") {
trans_flag(shonk);
if args.is_empty() {
println!("{}", blahaj);
} else {
if args[0].eq("-t") {
trans_flag(blahaj);
}
} }
}
Ok(()) Ok(())
} }
} }
fn trans_flag(shonk: &str){
for (index, lines) in shonk.lines().enumerate() {
if index%4==0 {
println!("{}",lines.truecolor(91,206,250));
}else if index%2==0 {
fn trans_flag(blahaj: &str) {
for (index, lines) in blahaj.lines().enumerate() {
if index % 4 == 0 {
println!("{}", lines.truecolor(91, 206, 250));
} else if index % 2 == 0 {
println!("{}", lines.white()); println!("{}", lines.white());
}else { println!("{}", lines.truecolor(245,169,184));}
} else { println!("{}", lines.truecolor(245, 169, 184)); }
} }
} }
Loading…
Cancel
Save