Last active
January 25, 2018 23:17
-
-
Save umarov/70a213f2a63b50719a4b30dd6af44c60 to your computer and use it in GitHub Desktop.
How to get started with Kotlin Native and Web Assembly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>WASM with Kotlin</title> | |
</head> | |
<body> | |
<h1>Welcome to WASM with Kotlin</h1> | |
<script wasm="./program.wasm" src="./program.wasm.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment