fixup! Split main by files
This commit is contained in:
+1
-1
@@ -19,7 +19,7 @@ pub fn tokenizer(task: &str) -> Vec<Token> {
|
|||||||
while pointer < task.len() {
|
while pointer < task.len() {
|
||||||
let c = chars[pointer];
|
let c = chars[pointer];
|
||||||
match c {
|
match c {
|
||||||
'0' .. '9' => {
|
'0' ..='9' => {
|
||||||
let mut end = pointer;
|
let mut end = pointer;
|
||||||
while end < task.len() {
|
while end < task.len() {
|
||||||
let cur_c = chars[end];
|
let cur_c = chars[end];
|
||||||
|
|||||||
Reference in New Issue
Block a user