<meta charset="utf-8">
<h1> MEU PRIMEIRO TEST </h1>
<br>
<script>
function pulaLinha(); {
document.write("<br>");
}
function mostrarTela(frase); {
document.write(frase);
}
var ano = 2018;
mostrarTela("Gabriel tem " + (ano - 1999) + " anos");
mostrarTela("Lucas tem " + (ano - 1941) + " anos");
var ano = 2019;
mostrarTela("Marcos tem " + (ano - 1989) + " anos");
</script>