Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Kuldeep Kumar

Kuldeep Kumar

Kuldeep Kumar has asked 3 questions and find answers to 0 problems.

Stats

15
EtPoint
0
Vote count
3
questions
0
answers

About

public void codeLifeCycle(Life mylife){
myLife.eat();
myLife.sleep();
myLife.code();
if (!myLife.death()){
codeLifeCycle(mylife);
}
}