/*
Multiline comments start
with a forward-slash followed by an asterisk (/*) and
end with an asterisk followed by a forward-slash (*/).
*/
/*
You can write nested comments by
starting a multiline comment block
and then starting a second multiline comment within the first block.
The second block is then closed, followed by the first block:
/* This is a nested multiline comment in a multiline comment.
/* This is the third, nested multiline comment. */
This is the end of the second multiline comment. */
*/
/* create a variable
to store salary of employees
*/
var salary = 10000
print(salary)