mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-07-14 23:55:50 +02:00
18 lines
463 B
HTML
18 lines
463 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>Debugcapture client demo</title>
|
|
<script src="democapture.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Debugcapture client example</h1>
|
|
<p>Debug console output, also sent to debug server</p>
|
|
<div id="pasjsconsole"></div>
|
|
<script>
|
|
rtl.run();
|
|
</script>
|
|
</body>
|
|
</html>
|