forked from DSIT/documentation-dsit
Actualiser docs/Services/pole-scientifique/Onyxia/docs/stockage.md
This commit is contained in:
parent
ce0c295ea2
commit
af7f08ecc0
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user