]> code.bitgloo.com Git - bitgloo/alee-forth.git/commitdiff
add 2/ and 2*
authorClyne Sullivan <clyne@bitgloo.com>
Fri, 10 Feb 2023 01:30:24 +0000 (20:30 -0500)
committerClyne Sullivan <clyne@bitgloo.com>
Fri, 10 Feb 2023 01:30:24 +0000 (20:30 -0500)
core.fth

index 555b126b5a88c69e757bdc783350844d3f0a2b31..06aad0a9f96b1103a8603112b0f8995c76a1bfd3 100644 (file)
--- a/core.fth
+++ b/core.fth
@@ -30,6 +30,8 @@
 : xor    ^ ;
 : lshift << ;
 : rshift >> ;
+: 2*     2 * ;
+: 2/     2 / ;
 
 : ,      here ! 1 allot ;
 : c!     ! ;