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
6 changes: 6 additions & 0 deletions C++/Hello-World-Shuvam.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!";
return 0;
}
8 changes: 8 additions & 0 deletions C/Hello_World_Shuvam.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>
using namespace std;
int main()
{
printf("Hello, World!\n");

return 0;
}
3 changes: 3 additions & 0 deletions Java/HelloWorldShuvam.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class HelloWorldShuvam {
public static void main(String[] args) {
System.out.println("Hello World!"); }
1 change: 1 addition & 0 deletions Python/shuvam.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World!")