File: string.rs

package info (click to toggle)
rust-similar-asserts 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: makefile: 24
file content (4 lines) | stat: -rw-r--r-- 124 bytes parent folder | download
1
2
3
4
fn main() {
    let reference = "Hello\nWorld".to_string();
    similar_asserts::assert_eq!(reference, "Goodbye\nWorld");
}