Add some sample files

This commit is contained in:
Jeremy Soller 2024-03-04 12:56:26 -07:00
parent 1c7561accf
commit 636e51510d
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
5 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is an example shell file"

3
samples/text_markdown.md Normal file
View file

@ -0,0 +1,3 @@
# Markdown
This is an example markdown 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");
}