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 === )
|
||||
|
||||
." HELLO " cr
|
||||
private{
|
||||
|
||||
\ Heap-allocated string object
|
||||
\ p: null terminated string
|
||||
: make-string ( p -- str )
|
||||
dup strlen 1 + allocate throw tuck strcpy .s
|
||||
dup strlen 1 + allocate throw tuck strcpy
|
||||
; export
|
||||
|
||||
: release-string ( str -- ) free ; export
|
||||
|
|
Loading…
Reference in a new issue