Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #86 from sunpech/master
Browse files Browse the repository at this point in the history
Added HTML, VB, and ASP hello world files. Added name to readme.
  • Loading branch information
David Coy authored Oct 18, 2016
2 parents bff429b + c6f2b9e commit 35a2beb
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions HelloWorld.asp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<html>
<head>
<title>Hello World</title>
</head>
<body>
<% Response.Write("Hello World") %>
</body>
</html>
7 changes: 7 additions & 0 deletions HelloWorld.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Imports System

Public Module Hello
Sub Main()
Console.WriteLine ("Hello World")
End Sub
End Module
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ If you would like to contribute, please add a "Hello world" file in the language
* Anubha Kushwaha (@anubhakushwaha)
* Abhijit Ranalkar(@asr21)
* Rohit Gupta(@guptarohit)
* Steven Suwatanapongched(@sunpech)
8 changes: 8 additions & 0 deletions hello-world.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>

0 comments on commit 35a2beb

Please sign in to comment.