-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample.html
More file actions
25 lines (24 loc) · 881 Bytes
/
example.html
File metadata and controls
25 lines (24 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<script src="./src/main/javascript/goog.base.js"></script>
<script src="./src/main/javascript/scalaxy.js"></script>
<script src="./src/main/javascript/scalaxy.lang.js"></script>
<script src="./src/main/javascript/scalaxy.lang.Object.js"></script>
<script src="./src/main/javascript/scalaxy.lang.Class.js"></script>
<script src="./src/main/javascript/experiments.js"></script>
<script src="./src/main/javascript/mixins.js"></script>
<!--
<script src="../target/javascript/scalaxy.js"></script>
-->
<script src="../target/javascript/JavaScriptTest.js"></script>
<script src="../target/javascript/Run.js"></script>
</head>
<body>
<script>
var obj = new scalaxy.lang.Object()
console.log(obj);
console.log(obj.getClass());
//document.write(JavaScriptTest)
</script>
</body>
</html>