Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

disemvowel.rs
// input: some string
// output: that string with all vowels removed
pub fn disemvowel(s: &str) -> String {
	let mut s = s.to_string();
	s.retain(|c| !"AEIOUaeiou".contains(c));
	s
}