Difference between revisions of "Test/testpage"
From fd.io
< Test
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{#expr: 1 and -1 }} | {{#expr: 1 and -1 }} | ||
+ | |||
+ | <DynamicPageList> | ||
+ | category = Uploaded with UploadWizard | ||
+ | count = 5 | ||
+ | </DynamicPageList> | ||
+ | |||
+ | <syntaxhighlight lang="python" line="1" > | ||
+ | def hello_world(): | ||
+ | print("hello world!") | ||
+ | |||
+ | hello_world() | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | |||
+ | <syntaxhighlight> | ||
+ | #include<stdio.h> | ||
+ | |||
+ | main() | ||
+ | { | ||
+ | printf("Hello World"); | ||
+ | |||
+ | } | ||
+ | </syntaxhighlight> |
Latest revision as of 22:53, 26 January 2016
Testing subpages
1
- 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
- File:Screen Shot 2022-08-09 at 10.03.06 AM.png
def hello_world():
print("hello world!")
hello_world()
#include<stdio.h> main() { printf("Hello World"); }