all repos — min @ 32152f44d88ffb528e64af9095b2bc1818c15aed

A small but practical concatenative programming language.

lib/min_num.nim

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
import 
  tables,
  random
import 
  ../core/parser, 
  ../core/value, 
  ../core/interpreter, 
  ../core/utils

  # Arithmetic
  
proc num_module*(i: In)=

  let def = i.define()
  
  def.symbol("+") do (i: In):
    var a, b: MinValue
    i.reqTwoNumbers a, b
    if a.isInt:
      if b.isInt:
        i.push newVal(a.intVal + b.intVal)
      else:
        i.push newVal(a.intVal.float + b.floatVal)
    else:
      if b.isFloat:
        i.push newVal(a.floatVal + b.floatVal)
      else:
        i.push newVal(a.floatVal + b.intVal.float)
  
  def.symbol("-") do (i: In):
    var a, b: MinValue
    i.reqTwoNumbers a, b
    if a.isInt:
      if b.isInt:
        i.push newVal(b.intVal - a.intVal)
      else:
        i.push newVal(b.floatVal - a.intVal.float)
    else:
      if b.isFloat:
        i.push newVal(b.floatVal - a.floatVal)
      else:
        i.push newVal(b.intVal.float - a.floatVal) 
  
  def.symbol("*") do (i: In):
    var a, b: MinValue
    i.reqTwoNumbers a, b
    if a.isInt:
      if b.isInt:
        i.push newVal(a.intVal * b.intVal)
      else:
        i.push newVal(a.intVal.float * b.floatVal)
    else:
      if b.isFloat:
        i.push newVal(a.floatVal * b.floatVal)
      else:
        i.push newVal(a.floatVal * b.intVal.float)
  
  def.symbol("/") do (i: In):
    var a, b: MinValue
    i.reqTwoNumbers a, b
    if a.isInt:
      if b.isInt:
        i.push newVal(b.intVal.int / a.intVal.int)
      else:
        i.push newVal(b.floatVal / a.intVal.float)
    else:
      if b.isFloat:
        i.push newVal(b.floatVal / a.floatVal)
      else:
        i.push newVal(b.intVal.float / a.floatVal) 
  
  def.symbol("random") do (i: In):
    var n: MinValue
    i.reqInt n
    i.push n.intVal.int.random.newVal

  def.symbol("div") do (i: In):
    var a, b: MinValue
    i.reqTwoInts b, a
    i.push(newVal(a.intVal div b.intVal))
  
  def.symbol("mod") do (i: In):
    var a, b: MinValue
    i.reqTwoInts b, a
    i.push(newVal(a.intVal mod b.intVal))

  def.symbol("succ") do (i: In):
    var n: MinValue
    i.reqInt n
    i.push newVal(n.intVal + 1)

  def.symbol("pred") do (i: In):
    var n: MinValue
    i.reqInt n
    i.push newVal(n.intVal - 1)
  
  def.symbol("even?") do (i: In):
    var n: MinValue
    i.reqInt n
    i.push newVal(n.intVal mod 2 == 0)

  def.symbol("odd?") do (i: In):
    var n: MinValue
    i.reqInt n
    i.push newVal(n.intVal mod 2 != 0)

  def.symbol("sum") do (i: In):
    var s: MinValue
    i.reqQuotationOfNumbers s
    var c = 0.float
    var isInt = true
    for n in s.qVal:
      if n.isFloat:
        isInt = false
        c = + n.floatVal
      else:
        c = c + n.intVal.float
    if isInt:
      i.push c.int.newVal
    else:
      i.push c.newVal

  def.finalize("num")