mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
187 B
Nim
15 lines
187 B
Nim
import imported, strutils
|
|
|
|
type
|
|
TFoo = object
|
|
x: int
|
|
y: string
|
|
|
|
proc main =
|
|
var t1 = "text"
|
|
var t2 = t1.toUpper
|
|
var foo = TFoo(x: 10, y: "test")
|
|
foo.
|
|
echo(t1 +++ t2)
|
|
|