-
-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathIndex.cshtml
More file actions
34 lines (28 loc) · 811 Bytes
/
Index.cshtml
File metadata and controls
34 lines (28 loc) · 811 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
26
27
28
29
30
31
32
33
34
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<script type="module">
import { test } from "./js/file.js";
import { test2 } from "./js/file.js";
import { testNullableFloatWithValues } from "./js/file.js";
import { testNullableFloatWithNulls } from "./js/file.js";
import { hoge } from "./js/file.js";
import { huga } from "./js/file.js";
import { testVector3 } from "./js/file.js";
import { testColorTag } from "./js/file.js";
import { testStructs } from "./js/file.js";
//hoge();
//huga();
test();
test2();
testNullableFloatWithValues();
testNullableFloatWithNulls();
testVector3();
testColorTag();
testStructs();
</script>
<div class="text-center">
<input type="button" value="button" onclick="do()">
</div>