Skip to content

Instantly share code, notes, and snippets.

@NikanWasTaken
Last active April 21, 2023 14:32
Show Gist options
  • Save NikanWasTaken/86cd12125be60eb86295d2c39baea136 to your computer and use it in GitHub Desktop.
Save NikanWasTaken/86cd12125be60eb86295d2c39baea136 to your computer and use it in GitHub Desktop.
A Gist full of examples for GitBot!
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0;
}
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello World!<h1>
</body>
</html>
const hello_world = "Hello World!";
const showText = function (text) {
console.log(text);
};
showText(hello_world);

A markdown!

AA Markdown!

AAA Markdown!

GitBot#8880

Bold Text Italics Bold Italics Strikethrough Text

Blockquotes

  1. List 1 1.1 Lists
  2. List 2
  • L
    • Li
      • Lis
        • List
hello_world = "Hello World!";
def showText(text):
print(text)
showText(hello_world);
println('Hello World!');
const hello_world: string = "Hello World!";
function showText(text: string) {
console.log(text);
};
showText(hello_world);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment