remove debug prints

This commit is contained in:
Koichi Nakamura 2021-12-04 21:25:34 +09:00
parent 887bccb418
commit 30a5b82f1b

View file

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