Add some samples of non-english text

This commit is contained in:
Jeremy Soller 2024-06-12 08:11:44 -06:00
parent 0ec5f72169
commit 43af5ac63e
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
20 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,3 @@
example-css-file {
color: #000000;
}

View file

@ -0,0 +1 @@
Example,CSV,file
1 Example CSV file

View file

@ -0,0 +1,3 @@
<body>
Example HTML file
</body>

View file

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

View file

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

View file

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

View file

@ -0,0 +1 @@
// This is an example C header 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");
}