primitive_types2 solution

This commit is contained in:
mo8it
2024-06-08 21:35:44 +02:00
parent 0e4136d31e
commit e1051724c3
3 changed files with 31 additions and 6 deletions
@@ -1 +1,21 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
fn main() {
let my_first_initial = 'C';
if my_first_initial.is_alphabetic() {
println!("Alphabetical!");
} else if my_first_initial.is_numeric() {
println!("Numerical!");
} else {
println!("Neither alphabetic nor numeric!");
}
// Example with an emoji.
let your_character = '🦀';
if your_character.is_alphabetic() {
println!("Alphabetical!");
} else if your_character.is_numeric() {
println!("Numerical!");
} else {
println!("Neither alphabetic nor numeric!");
}
}