1
0
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:
dschmenk 2023-12-12 21:50:48 -08:00
parent 21ac8cc402
commit 929678269f

View File

@ -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 <= ' '