t20148.nim 268 B

123456789
  1. type Percent = range[0.0 .. 1.0]
  2. # type Percent = float # using unlimited `float` works fine
  3. proc initColor*(alpha: Percent): bool =
  4. echo alpha
  5. const moduleInstanceStyle = initColor(1)
  6. # let moduleInstanceStyle = initColor(1) # using runtime conversion works fine