mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
616 B
14 lines
616 B
4 years ago
|
[
|
||
|
{
|
||
|
"description": "if the name is 'Perceval' excalibur should stay set in stone",
|
||
|
"code": "let name = 'Perceval'\nlet excalibur = 'set in stone'\n\n// Your code\n\nequal(excalibur, 'set in stone')"
|
||
|
},
|
||
|
{
|
||
|
"description": "if the name is 'Merlin' excalibur should stay set in stone",
|
||
|
"code": "let name = 'Merlin'\nlet excalibur = 'set in stone'\n\n// Your code\n\nequal(excalibur, 'set in stone')"
|
||
|
},
|
||
|
{
|
||
|
"description": "if the name is 'Arthur' excalibur should be pulled",
|
||
|
"code": "let name = 'Arthur'\nlet excalibur = 'set in stone'\n\n// Your code\n\nequal(excalibur, 'pulled')"
|
||
|
}
|
||
|
]
|