mirror of
https://github.com/dschmenk/PLASMA.git
synced 2025-04-05 03:37:43 +00:00
Fix check for last character of number
This commit is contained in:
parent
21ac8cc402
commit
929678269f
@ -114,7 +114,7 @@ def isnum(inbuf)#2
|
||||
num = num * 10 + ^inbuf - '0'
|
||||
putc(^inbuf); inbuf++
|
||||
loop
|
||||
if inbuf <= ' '
|
||||
if ^inbuf <= ' '
|
||||
puts("[Found number = "); puti(num); puts("]\n")
|
||||
fin
|
||||
return num, inbuf <= ' '
|
||||
|
Loading…
x
Reference in New Issue
Block a user