module language.babyfood; behavior Man { void eat (Food f) { standardOutput<-println(this + " eats " + f); } String toString(){ return "Man"; } }