mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
21 lines
419 B
HTML
21 lines
419 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Program Runner</title>
|
|
<script src="../../../../../../require.js"></script>
|
|
<script>
|
|
require({
|
|
baseUrl: './',
|
|
paths: {
|
|
system: '../system',
|
|
test: '../test'
|
|
}
|
|
}, ['program']);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Program Runner</h1>
|
|
<p>Check console for results.</p>
|
|
</body>
|
|
</html>
|