t22826.nim 144 B

12345678
  1. import std/tables
  2. var a: Table[string, float]
  3. type Value*[T] = object
  4. table: Table[string, Value[T]]
  5. discard toTable({"a": Value[float]()})