Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
x0lg0n committed Oct 29, 2023
1 parent f2b212b commit 4652683
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions C#/hello-world.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using System;

class HelloWorld {
static void Main() {
Console.WriteLine("Hello, world!");
}
}
6 changes: 6 additions & 0 deletions C++/hello-world.c++
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>

int main() {
std::cout << "Hello, world!\n";
return 0;
}
1 change: 1 addition & 0 deletions Javascript/hello-world.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello, World!");

0 comments on commit 4652683

Please sign in to comment.