Improve samples organization, add check script

This commit is contained in:
Jeremy Soller 2024-03-04 13:07:06 -07:00
parent 636e51510d
commit 39a6cbe67d
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
7 changed files with 28 additions and 0 deletions

3
samples/text/markdown.md Normal file
View file

@ -0,0 +1,3 @@
# Markdown
This is an example markdown file

1
samples/text/plain.txt Normal file
View file

@ -0,0 +1 @@
This is a plain text file.

3
samples/text/rust.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("This is an example Rust source file");
}

1
samples/text/x-chdr.h Normal file
View file

@ -0,0 +1 @@
// This is an example C header file

5
samples/text/x-csrc.c Normal file
View file

@ -0,0 +1,5 @@
#include <stdio.h>
int main(int argc, char **argv) {
printf("This is an example C source file\n");
}