1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//guess the language from a code snippet
if
(
wantDefaultMode
) {
}
//guess the language from table categories
else if
(
wantSomethingNew
) {
}
//name as many langauges as you can
else if
(
feelingSigma
) {
}
else
{
}
if
(
wantToGoBack
) {
}
//Default Mode
/* In default mode you have to guess the correct
programming language from a snippet of code.
When you guess incorrectly, another line of code
will appear. Your goal: guess the language in 5 attempts! */
//Table Mode
/* In table mode you have to guess the correct
programming language from the language
categories. After you guess a language, a row of that
language's values in the different categories
will show up in 1 of 3 colors: red for wrong, yellow
for partially right and green for right. If you are
unsure what the category means, click on the category title
to get redirected to a page that explains it.
You will have 5 attempts to guess the language! */
//Name Mode
/* In name mode, your goal is to guess as many
programming languages as you can in 60 seconds. */
if
(
unsureHowToPlay
) {
}
if
(
wantToGoBack
) {
}
ID: