From 636e51510db70d26163df8c36221ef9f38b7b025 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 4 Mar 2024 12:56:26 -0700 Subject: [PATCH] Add some sample files --- samples/application_x-shellscript.sh | 3 +++ samples/text_markdown.md | 3 +++ samples/text_rust.rs | 3 +++ samples/text_x-chdr.h | 1 + samples/text_x-csrc.c | 5 +++++ 5 files changed, 15 insertions(+) create mode 100644 samples/application_x-shellscript.sh create mode 100644 samples/text_markdown.md create mode 100644 samples/text_rust.rs create mode 100644 samples/text_x-chdr.h create mode 100644 samples/text_x-csrc.c diff --git a/samples/application_x-shellscript.sh b/samples/application_x-shellscript.sh new file mode 100644 index 0000000..9a0ede6 --- /dev/null +++ b/samples/application_x-shellscript.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "This is an example shell file" diff --git a/samples/text_markdown.md b/samples/text_markdown.md new file mode 100644 index 0000000..7c7a94a --- /dev/null +++ b/samples/text_markdown.md @@ -0,0 +1,3 @@ +# Markdown + +This is an example markdown file diff --git a/samples/text_rust.rs b/samples/text_rust.rs new file mode 100644 index 0000000..898da86 --- /dev/null +++ b/samples/text_rust.rs @@ -0,0 +1,3 @@ +fn main() { + println!("This is an example Rust source file"); +} diff --git a/samples/text_x-chdr.h b/samples/text_x-chdr.h new file mode 100644 index 0000000..21db5d8 --- /dev/null +++ b/samples/text_x-chdr.h @@ -0,0 +1 @@ +// This is an example C header file diff --git a/samples/text_x-csrc.c b/samples/text_x-csrc.c new file mode 100644 index 0000000..699b650 --- /dev/null +++ b/samples/text_x-csrc.c @@ -0,0 +1,5 @@ +#include + +int main(int argc, char **argv) { + printf("This is an example C source file\n"); +}