aboutsummaryrefslogtreecommitdiff
path: root/stemlib/stdlib.stem
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2024-01-20 18:05:18 -0800
committerPreston Pan <preston@nullring.xyz>2024-01-20 18:05:18 -0800
commite4ccee85e607c149ae1d14d66b344ae27c4c6528 (patch)
treedb73dbb3fc5d27828fb7527ea8e3a876542ec7f9 /stemlib/stdlib.stem
parent14014d789d36a609d3819a79444696cb435c817c (diff)
remove stemlib
Diffstat (limited to 'stemlib/stdlib.stem')
-rw-r--r--stemlib/stdlib.stem59
1 files changed, 0 insertions, 59 deletions
diff --git a/stemlib/stdlib.stem b/stemlib/stdlib.stem
deleted file mode 100644
index ffd3b67..0000000
--- a/stemlib/stdlib.stem
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/usr/local/bin/stem
-# Author: Preston Pan
-evalstr [ strquote eval ] def
-include [ fread evalstr ] def
-
-neg [ 0 swap - ] def
-
-# Author of loop deftion: Andrei S
-loop [
- swap dup 0 > [
- swap
- dup eval
- swap 1 - swap loop
- ] [ dsc dsc ] if
-] def
-
-
-swapd [ [ swap ] dip ] def
-swapt [ [ [ swap ] dip ] dip ] def
-
-dscd [ swap dsc ] def
-dsct [ swapd swap dsc ] def
-
-dsc2 [ dsc dsc ] def
-dsc3 [ dsc dsc dsc ] def
-
-# Author: Matthew H
-dupd [ [ dup ] dip ] def
-dupt [ [ [ dup ] dip ] dip ] def
-dupq [ [ [ [ dup ] dip ] dip ] dip ] def
-
-over [ dupd swap ] def
-over2 [ dupt swapd swap ] def
-over3 [ dupq swapt swapd swap ] def
-
-dup2 [ over over ] def
-dup3 [ over2 over2 over2 ] def
-dup4 [ over3 over3 over3 over3 ] def
-
-dip2 [ swap [ dip ] dip ] def
-dip3 [ swap [ dip ] dip ] def
-while [ dup2 [ [ ] if ] dip2 over [ while ] [ dsc dsc ] if ] def
-when [ [ ] if ] def
-
-loop-times [ dup2 [ swap [ ] if ] dip2
-dup [ 1 - loop-times ] [ dsc2 ] if ] def
-
-
-# d>base [ [ pow * "" swap ] keep2
-
-# [ [ over ] [ [ dup2 / floor * swap over - ] keep [ [ "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "↊" "↋" ] vat swap + ] with dip2 ] while dsc2 dup len(str-len) ] dip
-# - dup2 tail [ head "." ] dip + + ] def
-
-# Author: Preston Pan
-map [ [ ] over2 over2 len 0 swap
-[ dup4 swap vat over2 eval dscd dscd quote compose swap 1 + dsct dsct dsct over3 swap over3 swap ] swap loop-times dsc3 dscd dscd ] def
-
-filter [ [ ] over2 over2 len 0 swap
-[ dup4 swap vat dup over3 eval dsct dsct [ quote compose ] [ dsc ] if swap 1 + dsct dsct dsct over3 swap over3 swap ] swap loop-times dsc3 dscd dscd ] def