Skip to content

Commit

Permalink
add some skeleton code
Browse files Browse the repository at this point in the history
  • Loading branch information
wonook committed Sep 11, 2017
1 parent b66de15 commit 82bfcbd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.js
7 changes: 7 additions & 0 deletions prime5to50.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<head><title>Prime Printer Runner</title></head>
<body>
<script src="prime5to50.js"></script>
</body>
</html>
11 changes: 11 additions & 0 deletions prime5to50.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function prime5to50(): string {
let message : string = ""

// TODO: fill up the message string with the proper content.

return message
}

// You may use additional helper functions.

document.body.innerHTML = prime5to50()

0 comments on commit 82bfcbd

Please sign in to comment.