🚧 syrma.cc
This site is under construction
```
'use strict';
/* This is some test code
The code is rendered using both
md-block and prism */
const diceElement = document.querySelector('.dice');
// Roll a dice and show it to the player
let diceRoll = function () {
let dice = Math.trunc(Math.random() * 6 + 1);
diceElement.src = `dice-${dice}.png`;
diceElement.alt = `You have rolled a ${dice}!`;
diceElement.style.display = 'block';
return dice;
};
```
↪ a9dad0dbc4c8cacae9c6dcddc5c6c6c287cac6c4