From fff3588add2b9cbff9b5a2dbddb7018173ad8ac5 Mon Sep 17 00:00:00 2001 From: Noorul Hasan Date: Tue, 22 Oct 2019 10:35:09 +0530 Subject: [PATCH 1/2] Create visualbasic.net --- visualbasic.net | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 visualbasic.net 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 From 3ad961f67d455fb1bafb85258454258defc384e0 Mon Sep 17 00:00:00 2001 From: Noorul Hasan Date: Tue, 22 Oct 2019 10:54:51 +0530 Subject: [PATCH 2/2] new languages added --- helloworld.cs | 8 ++++++++ helloworld.html | 10 ++++++++++ helloworld.java | 7 +++++++ helloworld.m | 3 +++ helloworld.pas | 6 ++++++ helloworld.php | 4 ++++ helloworld.pl | 3 +++ 7 files changed, 41 insertions(+) create mode 100644 helloworld.cs create mode 100644 helloworld.html create mode 100644 helloworld.java create mode 100644 helloworld.m create mode 100644 helloworld.pas create mode 100644 helloworld.php create mode 100644 helloworld.pl 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