remove unused DIVMOD builtin

This commit is contained in:
David 2021-02-21 15:06:08 -05:00
parent 953764004d
commit 5048b445ae
1 changed files with 0 additions and 17 deletions

View File

@ -258,23 +258,6 @@ func (b *Builtins) Mod(s *Stack) func() error {
}
}
// DivMod performs NOS/TOS & NOS%TOS and pushes the (integer!) results: TOS as quotient, NOS as remainder
func (b *Builtins) DivMod(s *Stack) func() error {
return func() error {
tos, err := s.Pop()
if err != nil {
return err
}
nos, err := s.Pop()
if err != nil {
return err
}
s.Push(nos % tos)
s.Push(nos / tos)
return nil
}
}
// Print pops the stack and outputs it to the writer with a trailing space (defaults to stdout)
func (b *Builtins) Print(out io.Writer, s *Stack) func() error {
if out == nil {