First presented at CALECO
In this section, we shall go more rapidly through another example, modelling a simple circuit. We start with an amplifier whose output is 5 times its input:
object amplifier {
< input : real
output: real
>
output[t] = 5*input[t]
}