all repos — min @ 891cd32dfa91fd3b5be69e8c3d5aab984acdb716

A small but practical concatenative programming language.

min.nimble

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
import 
  core/consts

# Package

version       = pkgVersion
author        = pkgAuthor
description   = pkgDescription
license       = "MIT"
bin           = @[pkgName]
installFiles  = @["core/consts.nim"]

# Dependencies

requires "nim >= 1.4.0"

before install:
  exec "nimble install -y nifty"
  exec "nifty remove -f"
  exec "nifty install"