Bold Text
Italics
Bold Italics
Strikethrough Text
Blockquotes
- List 1 1.1 Lists
- List 2
- L
- Li
- Lis
- List
- Lis
- Li
#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); |
Bold Text
Italics
Bold Italics
Strikethrough Text
Blockquotes
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); |