Initial commit
[quanlib.git] / author.rb
1
2 class Author
3   def initialize(surname, givenNames)
4     @surname = surname
5     @givenNames = givenNames
6   end
7 end