creation(day);
}
break;
case 4:
{
waters.bring_forth(creature);
creature.move();
creature.have(life);
waters.bring_forth(fowl);
fowl.fly(earth.x,earth.y,firmanent.z);
create(waters.x,waters.y,waters.z,whale);
make_great(whale);
creature.after(creature.kind);
fowl.winged = true;
fowl.after(fowl.kind);
with creature, whale
{
fruitful = true;
multiply();
fill(waters.seas);
}
with fowl
{
fruitful = true;
multiply(earth);
}
day = 5; //And the evening and the morning were the fifth day
creation(day);
}
break;
case 5:
{
earth.bring_forth(creature);
creature.after(creature.kind);
earth.bring_forth(cattle);
earth.bring_forth(creeping_thing);
earth.bring_forth(beast);
cattle.after(cattle.kind);
creeping_thing.after(creeping_thing.kind);
beast.after(beast.kind);
make(man);
man.image = file_input("OurLikeness.txt");
man.dominion(sea.fish);
man.dominion(air.fowl);
man.dominion(cattle);
man.dominion(earth);
man.dominion(earth.creeping_thing);
bless(man);
man.fruitful = true;
man.multiply();
man.replenish(earth);
man.subdue(earth);
give(man,herb);
give(man,fruit);
herb.as(man.meat);
fruit.as(man.meat);
give(earth.beast,herb);
give(air.fowl,herb);
give(creeping_thing,herb);
herb.as(earth.beast.meat);
herb.as(air.fowl.meat);
herb.as(creeping_thing.meat);
day = 6; //And the evening and the morning were the sixth day
creation(day);
}
break;
case 6:
{
finish(heavens);
finish(earth);
finish(heavens.host);
finish(earth.host);
day = 7; //And on the seventh day God ended his work, which he had made
return true;
}
break;
}
}
int main()
{
day = beginning();
rest = creation(day);
//and he rested on the seventh day from all his work which he had made
if rest
{
bless(day);
sanctify(day);
return 1;
}
}
by Samuel Garcia
Comenzar desde el principio
