isbpl/errorstream.isbpl

10 lines
157 B
Text
Raw Permalink Normal View History

2022-03-05 20:55:03 +01:00
native eputchar
func eputs {
def str _array =str
def i 1 neg =i
2022-03-05 20:55:03 +01:00
while { ( i 1 + =i ) ( i str alen lt ) } {
str i aget eputchar
2022-03-05 20:55:03 +01:00
}
}