Skip to content

Commit

Permalink
Update primitive_types2.cairo
Browse files Browse the repository at this point in the history
  • Loading branch information
shramee authored Mar 16, 2024
1 parent 067e5f6 commit 4d69ad4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions exercises/primitive_types/primitive_types2.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ fn main() {
if is_alphabetic(
ref my_first_initial
) {

println!(" Alphabetical !");
} else if is_numeric(
ref my_first_initial
) {

println!(" Numerical !");
} else {

println!(" Neither alphabetic nor numeric!");
}

Expand All @@ -30,15 +27,12 @@ fn main() {
if is_alphabetic(
ref your_character
) {

println!(" Alphabetical !");
} else if is_numeric(
ref your_character
) {

println!(" Numerical!");
} else {

println!(" Neither alphabetic nor numeric!");
}
}
Expand Down

0 comments on commit 4d69ad4

Please sign in to comment.