TimeTravel.js
Off to a good start...
function timeTravel( direction, time /* in seconds */ Â ) {
if (direction == 'forward') {
wait (time);
echo ("We're there!");
} else {
// TODO ...
}
}
42at
Off to a good start...
function timeTravel( direction, time /* in seconds */ Â ) {
if (direction == 'forward') {
wait (time);
echo ("We're there!");
} else {
// TODO ...
}
}