Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions helloworld.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//Hello World in C#
class HelloWorld
{
static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}
10 changes: 10 additions & 0 deletions helloworld.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<HTML>
<!-- Hello World in HTML -->
<HEAD>
<TITLE>Hello World!</TITLE>
</HEAD>
<BODY>
<h1>Hello World!</h1>
<b>Hacktober Fest</b>
</BODY>
</HTML>
7 changes: 7 additions & 0 deletions helloworld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Hello World in Java

class HelloWorld {
static public void main( String args[] ) {
System.out.println( "Hello World!" );
}
}
3 changes: 3 additions & 0 deletions helloworld.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
% Hello World in MATLAB.

disp('Hello World');
6 changes: 6 additions & 0 deletions helloworld.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{Hello world in Pascal}

program HelloWorld(output);
begin
WriteLn('Hello World!');
end.
4 changes: 4 additions & 0 deletions helloworld.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
// Hello world in PHP
echo 'Hello World!';
?>
3 changes: 3 additions & 0 deletions helloworld.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Hello world in perl

print "Hello World!\n";
11 changes: 11 additions & 0 deletions visualbasic.net
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'Hello World in Visual Basic .NET (VB.NET)

Imports System.Console

Class HelloWorld

Public Shared Sub Main()
WriteLine("Hello, world!")
End Sub

End Class