mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
remove debug prints
This commit is contained in:
parent
887bccb418
commit
30a5b82f1b
1 changed files with 1 additions and 2 deletions
|
@ -3,13 +3,12 @@
|
||||||
|
|
||||||
( === String === )
|
( === String === )
|
||||||
|
|
||||||
." HELLO " cr
|
|
||||||
private{
|
private{
|
||||||
|
|
||||||
\ Heap-allocated string object
|
\ Heap-allocated string object
|
||||||
\ p: null terminated string
|
\ p: null terminated string
|
||||||
: make-string ( p -- str )
|
: make-string ( p -- str )
|
||||||
dup strlen 1 + allocate throw tuck strcpy .s
|
dup strlen 1 + allocate throw tuck strcpy
|
||||||
; export
|
; export
|
||||||
|
|
||||||
: release-string ( str -- ) free ; export
|
: release-string ( str -- ) free ; export
|
||||||
|
|
Loading…
Reference in a new issue