mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
270 B
Nim
17 lines
270 B
Nim
discard """
|
|
output: '''(FirstName: James, LastName: Franco)'''
|
|
"""
|
|
|
|
# bug #1547
|
|
import tables
|
|
|
|
type Person* = object
|
|
FirstName*: string
|
|
LastName*: string
|
|
|
|
let people = {
|
|
"001": Person(FirstName: "James", LastName: "Franco")
|
|
}.toTable()
|
|
|
|
echo people["001"]
|