aboutsummaryrefslogtreecommitdiff
path: root/library/base.slang
blob: 531b189be18d18abde02b73ef563d52a22e89464 (plain)
1
2
3
4
5
6
7
8
9
10
11
§ nip  swp pop ;
§ tuck swp ovr ;

§ abs dup 0 < if -1 * then else ;

§ min ovr ovr < if     pop then swp pop else ;
§ max ovr ovr < if swp pop then     pop else ;

§ >  swp < ;
§ <= > not ;
§ >= < not ;