optional_nonstrict.nim 80 B

1234
  1. import options
  2. converter option2val*[T](val: Option[T]): T =
  3. return val.get()