Created
March 5, 2015 03:54
-
-
Save miyakogi/afa1259b0b000312872d to your computer and use it in GitHub Desktop.
Nim で DOM をさわる
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
nim js -o:hellonim.js hellonim.nim |
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> | |
<body> | |
<div id="nim-container"></div> | |
<script type="text/javascript" src="hellonim.js"></script> | |
</body> | |
</html> |
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
import dom | |
var container = document.getElementById("nim-container") | |
container.innerHTML="<h2>Hello Nim!</h2>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment