mirror of https://github.com/Wilfred/difftastic/
24 lines
314 B
Rust
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.
|
|
*/
|