2023-09-01 15:20:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>vrml1to97 test</title>
|
|
|
|
<script>
|
|
|
|
(async () => {
|
2023-09-01 21:32:25 +00:00
|
|
|
const vrml1to97 = await import('../dist/vrml1to97/index.js')
|
|
|
|
console.log(vrml1to97.convert('if (moo) cows // hurray'))
|
2023-09-01 15:20:34 +00:00
|
|
|
})()
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Nothing will show in this page, but the result of the conversion
|
|
|
|
should appear in the console.</p>
|
|
|
|
</body>
|
|
|
|
</html>
|