diff --git a/helloworld.cs b/helloworld.cs new file mode 100644 index 0000000..4f953c5 --- /dev/null +++ b/helloworld.cs @@ -0,0 +1,8 @@ +//Hello World in C# +class HelloWorld +{ + static void Main() + { + System.Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file diff --git a/helloworld.html b/helloworld.html new file mode 100644 index 0000000..3e45215 --- /dev/null +++ b/helloworld.html @@ -0,0 +1,10 @@ + + + +Hello World! + + +

Hello World!

+Hacktober Fest + + \ No newline at end of file diff --git a/helloworld.java b/helloworld.java new file mode 100644 index 0000000..46a37a4 --- /dev/null +++ b/helloworld.java @@ -0,0 +1,7 @@ +// Hello World in Java + +class HelloWorld { + static public void main( String args[] ) { + System.out.println( "Hello World!" ); + } +} \ No newline at end of file diff --git a/helloworld.m b/helloworld.m new file mode 100644 index 0000000..8490f18 --- /dev/null +++ b/helloworld.m @@ -0,0 +1,3 @@ +% Hello World in MATLAB. + +disp('Hello World'); \ No newline at end of file diff --git a/helloworld.pas b/helloworld.pas new file mode 100644 index 0000000..5354228 --- /dev/null +++ b/helloworld.pas @@ -0,0 +1,6 @@ +{Hello world in Pascal} + +program HelloWorld(output); +begin + WriteLn('Hello World!'); +end. \ No newline at end of file diff --git a/helloworld.php b/helloworld.php new file mode 100644 index 0000000..4c3ad7f --- /dev/null +++ b/helloworld.php @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/helloworld.pl b/helloworld.pl new file mode 100644 index 0000000..5976530 --- /dev/null +++ b/helloworld.pl @@ -0,0 +1,3 @@ +# Hello world in perl + +print "Hello World!\n"; \ No newline at end of file diff --git a/visualbasic.net b/visualbasic.net new file mode 100644 index 0000000..7ce6786 --- /dev/null +++ b/visualbasic.net @@ -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