mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +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()
|
|
|