difftastic/sample_files/comments_1.rs

24 lines
314 B
Rust

// Unchanged comment.
f1();
// Changing a single word.
f2();
// A completely different sentence.
f3();
if true {
/* A multiline comment
* whose indentation changes.
*/
}
// An example environment variable: FOO="a-b"
// A single line comment.
/** A doc comment.
*
* This line will change.
*/