--- license: other license_name: open-data-attribution-training-disclosure-license-odatl-1.0 license_link: LICENSE language: - en tags: - synthetic - code size_categories: - 100M 5\n print('hello')` | `if x > 5:\n print('hello')` | Colon missing after if. | Python | | `console.log('world'` | `console.log('world')` | Close parenthesis. | JavaScript | | `let mut x=5; let r1=&mut x; let r2=&mut x;` | `let mut x=5; { let r1=&mut x; } let r2=&mut x;` | Only one mutable borrow allowed. | Rust | | `SELECT name age FROM users;` | `SELECT name, age FROM users;` | Missing comma between columns. | SQL | | `

Hello world!

` | `

Hello world!

` | Improper nesting of tags. | HTML | ---