fork download
  1. " Student class "
  2. Object subclass: #Student
  3. instanceVariableNames: 'studentName studentNumber numberOfTests marks'
  4. classVariableNames: ''
  5. poolDictionaries: ''
  6. category: 'Student'.
  7.  
  8. Student studentName
  9. ^studentName.
  10.  
  11. Student studentNumber
  12. ^studentNumber.
  13.  
  14. Student numberOfTests
  15. ^numberOfTests.
  16.  
  17. Student marks
  18. ^marks.
Success #stdin #stdout 0.01s 696320KB
stdin
Standard input is empty
stdout
Object: Student error: did not understand #studentName
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
Student class(Object)>>doesNotUnderstand: #studentName (SysExcept.st:1448)
UndefinedObject>>executeStatements (prog:8)
Object: Student error: did not understand #studentNumber
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
Student class(Object)>>doesNotUnderstand: #studentNumber (SysExcept.st:1448)
UndefinedObject>>executeStatements (prog:11)
Object: Student error: did not understand #numberOfTests
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
Student class(Object)>>doesNotUnderstand: #numberOfTests (SysExcept.st:1448)
UndefinedObject>>executeStatements (prog:14)
Object: Student error: did not understand #marks
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
Student class(Object)>>doesNotUnderstand: #marks (SysExcept.st:1448)
UndefinedObject>>executeStatements (prog:17)