Skip to content

Commit

Permalink
lex: fix Ee± formatted floating-point literal lexing
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jan 28, 2024
1 parent 3733bf1 commit 66c5324
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions std/jule/lex/lex.jule
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ fn float_fmt_e(&txt: []byte, mut i: int): (lit: str) {
if i >= txt.len {
ret
}
if txt[i] == '_' {
ret
}
}

let first = i
Expand Down

0 comments on commit 66c5324

Please sign in to comment.