all repos — min @ e3d13b8ed329b168edb31ad696e58ff8b11e50e3

A small but practical concatenative programming language.

core/consts.nim

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
import
  os

const version* = "1.0.0-dev"

when defined(windows):
  const HOME* = getenv("USERPROFILE")
when not defined(windows):
  const HOME* = getenv("HOME")

const MINIMRC* = HOME / ".minimrc"
const MINIMSYMBOLS* = HOME / ".minim_symbols"
const MINIMHISTORY* = HOME / ".minim_history"