This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type | |
Vehicle* = ref object of RootRef | |
color*: string | |
type | |
Car* = ref object of Vehicle | |
make*: string | |
# This method ... is never called, it seems | |
# that system.`==` is preferred, why? |
NewerOlder