aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/lib/forth2012/core/2over.frt
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/common/lib/forth2012/core/2over.frt')
-rw-r--r--amforth-6.5/common/lib/forth2012/core/2over.frt8
1 files changed, 0 insertions, 8 deletions
diff --git a/amforth-6.5/common/lib/forth2012/core/2over.frt b/amforth-6.5/common/lib/forth2012/core/2over.frt
deleted file mode 100644
index cf614ca..0000000
--- a/amforth-6.5/common/lib/forth2012/core/2over.frt
+++ /dev/null
@@ -1,8 +0,0 @@
-\ 2over ( w1 w2 w3 w4 -- w1 w2 w3 w4 w1 w2 ) core two_over
-: 2over
- >r >r
- over over
- r>
- rot rot
- r>
- rot rot ;