R/Robot0001.R

Defines functions Robot0001

Documented in Robot0001 Robot0001

Robot0001 <-
function() {
  
  # First Awake
  awake   <- Awake()
  
  while(!(awake==0)){
    # I create a robot by first giving she feeling. So she could recognize sentiment and emotion
    if(awake=="1") { (Feeling <- Feeling()); awake <- Awake()}
    # Then maybe this robot should be able to see
    if(awake=="2") { (See <- Seeing()); awake <- Awake() }
  }
}
pingqingsheng/Robot0001 documentation built on May 5, 2019, 5:53 p.m.