blob: e59cb20f982e39af9b0203ba973bfecf65aa1b41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{ Evolving } = require '../evolving'
# Firstly define four classes
# define a mewing kitten
Kitten = Evolving::evolve ->
@sound = "~mew~"
@
# evolve them into a grow cat, who can "meow"
Cat = Kitten::evolve ->
@sound = "~meow~"
@
# define a person with a name
Person = Evolving::evolve ->
@setName = (@name)-> @
@intro = -> "Hi, I'm #{ @name }. #{ @sound ? "" }"
@
# evolve them into a professor in certain subjects
Professor = Person::evolve ->
# It is assumed that every professors knows rudiments of epistemology!
@subjects = [ "Epistemology" ]
@addSubject = (s)-> @subjects = @subjects.concat([ s ]); @
@randomSubject = -> @subjects.sort(-> Math.random() - 0.5)[0]
personIntro = @intro
@intro = ->
personIntro.call(@) +
" Today, we are going to learn about " +
@randomSubject()
@
# Describe the evolution of an Odd Professor, by combining Professor and Cat and adding a training in Sociology
OddProfessorEvolution = ->
Professor.evolution.call @
Cat.evolution.call @
@addSubject "Sociology"
# a kitten is born
kitten = new Kitten()
# name the kitten Alice, making them also a person in the process
alice = (new ( kitten.evolve( Person.evolution ) )).setName('Alice')
# evolve Alice into an odd professor
aliceTheCatProfessor = new ( alice.evolve( OddProfessorEvolution ) )
console.log """
Alice in her own words:
#{ alice.intro() }
Alice, after the evolution, introducing herself:
#{ aliceTheCatProfessor.intro() }
"""
|