/*
We are living in communism and everyone has got christmas tree(same kind) from goverment!
Task:
-Decorate christmas tree!
Restrictions:
-You can only edit existing characters(spaces).
-You cant edit initial dots!they cant even change position.
-Dont use characters such as “” , “`” or “.”
-Zoom out to see whole christmas tree in console (press ctrl and “-“)
Lets choose best christmas tree this year!
*/
function decorateTree(){
var tree = `
.
. .
. * * .
. .
. .
………………….
. .
. .
. * * * * * .
. .
. .
……………………………….
. .
. .
. .
. * * * * * * * * * .
. .
. .
…………………………………………………
……
……
……
`;
console.log(tree);
return tree;
}