servo/tests/html/test-js-alert.html
2014-09-08 20:21:42 -06:00

8 lines
119 B
HTML

<script>
function output (text)
{
window.alert(text);
}
output("Opossums have pouches like kangaroos");
</script>