13 Adam_Tindale.Birthday.signal();
14 Adam_Tindale.weight() * 1.5 => Adam_Tindale.weight;
19 class male extends human
24 // fun int study(string school){
27 fun string study(string school, string program, int level, int completed){
30 return "Undergraduate Degree";
32 return "Masters Degree";
34 return "Doctor of Philosophy";
36 fun void party(Event e){
39 if ( now % 10::year != 0)
40 <<<"It is your Birthday!!!!">>>;
42 <<<"No, it isn't my birthday...">>>;
49 Adam_Tindale.born() => time birth;
50 spork ~ life() => Shred lifetime;
52 Adam_Tindale.study("LougboroughPublicSchool");
53 Adam_Tindale.study("BayridgePublicSchool");
54 Adam_Tindale.study("BayridgeSecondarySchool");
55 Adam_Tindale.study("FrontenacSecondarySchool");
56 <<< "Public Schools Attended: ",degrees >>>;
58 <<< Adam_Tindale.study("QueensUnivsersity","MusicPerformance",0,true) >>>;
59 <<< Adam_Tindale.study("McGillUniversity","MusicTechnology",1,true) >>>;
60 // still working on this one
62 Adam_Tindale.study("UnivsersityOfVictoria","InterdisciplinaryStudies",2,false)
65 spork ~ party(Adam_Tindale.birthday);
69 27::year + 4::month + 20::day => now;
72 ( birth + std.rand2f(0., 80.) )::year => time death;
74 //it is going to happen!
76 machine.remove( lifetime.id() );