forgot how numbers work
This commit is contained in:
parent
39374944b7
commit
a55c66813c
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ mod blocks;
|
|||
|
||||
fn main() {
|
||||
for block in blocks::BLOCKS {
|
||||
for i in (block.0)..(block.1) {
|
||||
for i in (block.0)..(block.1 + 1) {
|
||||
match char::from_u32(i) {
|
||||
Some(ch) => {
|
||||
if ch.is_control() {
|
||||
|
|
Loading…
Reference in a new issue