Skip to content

Commit

Permalink
emm
Browse files Browse the repository at this point in the history
  • Loading branch information
littlewhitecloud authored Dec 5, 2023
1 parent bac04b6 commit 7c2aa11
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/should_succeed/ascii_test.jou
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ def main() -> int:
assert is_ascii_digit('0')
assert is_ascii_digit('7')
assert is_ascii_digit('9')
assert is_ascii_letter('A')
assert is_ascii_letter('Z')
assert is_ascii_letter('a')
assert is_ascii_letter('z')
assert not is_ascii_digit('x')
assert not is_ascii_digit('\0')

Expand Down

0 comments on commit 7c2aa11

Please sign in to comment.