Skip to content

Instantly share code, notes, and snippets.

@justinvanwinkle
Created August 23, 2013 21:25
Show Gist options
  • Save justinvanwinkle/6324195 to your computer and use it in GitHub Desktop.
Save justinvanwinkle/6324195 to your computer and use it in GitHub Desktop.
type
TPerson = object of TObject
name*: string
age: int
TStudent = object of TPerson
student_id: int
var
student: TStudent
person: TPerson
person = TPerson(name: "Justin", age: 33)
student = TStudent(name: "Anton", age: 5, student_id: 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment