Actualiser docs/Services/pole-scientifique/Onyxia/docs/stockage.md

This commit is contained in:
Alexis GUYOT 2024-01-25 11:22:03 +01:00
parent ce0c295ea2
commit af7f08ecc0

View File

@ -1,24 +1,26 @@
=== "C" !!! example
``` c === "C"
#include <stdio.h>
int main(void) { ``` c
printf("Hello world!\n"); #include <stdio.h>
return 0;
}
```
=== "C++" int main(void) {
printf("Hello world!\n");
return 0;
}
```
``` c++ === "C++"
#include <iostream>
int main(void) { ``` c++
std::cout << "Hello world!" << std::endl; #include <iostream>
return 0;
} int main(void) {
``` std::cout << "Hello world!" << std::endl;
return 0;
}
```
# Stockage de données # Stockage de données