Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hello-io.html « wasm « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a10503c35e74aca8e583d4c1a83fb3f4377d376b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html lang="en-us">
	<head>
	</head>
	<body>
		(Open the Developer Console -usually F12- to see the result.)
		<script type="text/javascript">
			var App = {
				init: function () {
					BINDING.call_static_method("[hello-io] Program:Main", []);
				},
			};
		</script>
		<script type="text/javascript" src="mono-config.js"></script>
		<script type="text/javascript" src="runtime.js"></script>
		<script type="text/javascript" src="mono-loader.js"></script>
		<script defer type="text/javascript" src="dotnet.js"></script>
	</body>
</html>