2021-12-02 21:21:10 +01:00

12 lines
160 B
HTML

<html>
<body>
<input onchange="go(this)"></input>
<script>
function go(e) {
eval(e.value);
}
</script>
</body>
</html>