diff --git a/tower_of_babel.txt b/tower_of_babel.txt new file mode 100644 index 0000000..a0229eb --- /dev/null +++ b/tower_of_babel.txt @@ -0,0 +1,14 @@ +function buildTower() +{ + while (language == ONE && ambition == SKY_HIGH) { + stack.push(brick); + height++; + } + + if (height > acceptable_pride_threshold) { + splitLanguages(); + scatterHumans(); + } + + return "Let us make a name for ourselves"; +}