Difference between revisions of "Test/testpage"
From fd.io
< Test
| (One intermediate revision by the same user not shown) | |||
| Line 13: | Line 13: | ||
hello_world() | hello_world() | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | |||
| + | <syntaxhighlight> | ||
| + | #include<stdio.h> | ||
| + | |||
| + | main() | ||
| + | { | ||
| + | printf("Hello World"); | ||
| + | |||
| + | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 22:53, 26 January 2016
Testing subpages
1
- File:Fosdem2021-fdio-csit.pdf
- File:Host Stack Test Framework runtime-flow diagram.png
- File:Host Stack Test Framework build-process.png
- File:Host Stack Test Framework architecture description.png
- File:Sonarcloud.png
def hello_world():
print("hello world!")
hello_world()
#include<stdio.h> main() { printf("Hello World"); }