Improve samples organization, add check script
This commit is contained in:
parent
636e51510d
commit
39a6cbe67d
7 changed files with 28 additions and 0 deletions
3
samples/text/markdown.md
Normal file
3
samples/text/markdown.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Markdown
|
||||
|
||||
This is an example markdown file
|
||||
1
samples/text/plain.txt
Normal file
1
samples/text/plain.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
This is a plain text file.
|
||||
3
samples/text/rust.rs
Normal file
3
samples/text/rust.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("This is an example Rust source file");
|
||||
}
|
||||
1
samples/text/x-chdr.h
Normal file
1
samples/text/x-chdr.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
// This is an example C header file
|
||||
5
samples/text/x-csrc.c
Normal file
5
samples/text/x-csrc.c
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
printf("This is an example C source file\n");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue