Epoch
Heading 1
Heading 2
Heading 3
Text
Italic Bold underline Verbatim strikethrough
Lists
Unorganized
- a
- b
- c
- d
Organized
- a
- b
- c
- d
Quotes
"The strength of JavaScript is that you can do anything. The weakness is that you will."
— Reg Braithwaite
TEST
"The strength of JavaScript is that you can do anything. The weakness is that you will."
— Reg Braithwaite
Tables
| Item | Peso | Valor (R$) |
|---|---|---|
| Pera | 1Kg | 28 |
| Uva | 500g | 12 |
| Maçã | 1Kg | 19 |
| Salada mista | 150g | 10 |
| Total | 69 R$ |
Source code
use fmt;
export fn main() void = {
const greetings = [
"Hello, world!",
"¡Hola Mundo!",
"Γειά σου Κόσμε!",
"Привіт, світе!",
"こんにちは世界!",
];
for (let greeting .. greetings) {
fmt::println(greeting)!;
};
};
#include <stdio.h>
int main(void) {
printf("Hello, World!\n");
return 0
}
(message "Hello, World!")
Hello, World!








