mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
11 lines
122 B
Nim
Executable File
11 lines
122 B
Nim
Executable File
discard """
|
|
output: "do nothing"
|
|
"""
|
|
|
|
method somethin(obj: TObject) =
|
|
echo "do nothing"
|
|
|
|
var o: TObject
|
|
o.somethin()
|
|
|