Add some sample files
This commit is contained in:
parent
1c7561accf
commit
636e51510d
5 changed files with 15 additions and 0 deletions
3
samples/application_x-shellscript.sh
Normal file
3
samples/application_x-shellscript.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo "This is an example shell file"
|
||||
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
|
||||
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