Skip to content
Snippets Groups Projects
Name Last commit Last update
..
docs/example.md
docs/index.md
docs/lele.md

Testing mkdocs

hi there

😄

😄

# Hello world example (Python)
print("Hello World!")
zero_to_ten_double = [2*x for x in range(10)]

!!! note hiiii

!!! tip "yeeee" aasdfasdfasfd

=== "C"

``` c
#include <stdio.h>

int main(void) {
  printf("Hello world!\n");
  return 0;
}
```

=== "C++"

``` c++
#include <iostream>

int main(void) {
  std::cout << "Hello world!" << std::endl;
  return 0;
}
```