Zebra0.com

alice variablesVariables in Alice3

Variables in Alice3


Text of video

public void myFirstMethod() {
  //Programmer : Janet Joy
  //Gallery Class variables
  String joke = "What was the pumpkin’s favorite sport?";
  String answer = "Squash!";
  SJointedModel jokester = this.chicken;
  jokester.turnToFace( this.pumpkin );
  jokester.say( joke );
  // Pause before telling the punch line.
  this.delay( 2.0 );
  jokester.say( answer );
  this.pumpkin.think( "That's not funny." );
}

Next: Self Study Questions