summary refs log tree commit diff stats
path: root/tests/showoff/thello2.nim
blob: d2e2f6227134a00101cfb9a8f82fffa3e24d9f69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: '''(a: 3, b: 4, s: abc)'''
"""

type
  MyObject = object
        a, b: int
        s: string

let obj = MyObject(a: 3, b: 4, s: "abc")
echo obj