aboutsummaryrefslogtreecommitdiff
path: root/slof/prim.code
diff options
context:
space:
mode:
Diffstat (limited to 'slof/prim.code')
-rw-r--r--slof/prim.code8
1 files changed, 0 insertions, 8 deletions
diff --git a/slof/prim.code b/slof/prim.code
index b9db151..b4e5e84 100644
--- a/slof/prim.code
+++ b/slof/prim.code
@@ -561,14 +561,6 @@ PRIM(STRING_X3d_CI)
}
MIRP
-// bool dependend pick
-// ?PICK ( v1 v2 bool -- v1|v2 )
-PRIM(_X3f_PICK)
- type_u b = TOS.u; POP;
- if (b) { NOS = TOS; }
- POP;
-MIRP
-
/* zcount ( zstr -- str len ) */
PRIM(ZCOUNT)
type_u len = strlen(TOS.a);