1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
# Chapter 1 This is rust code: ```rust fn main() { println!("Hello World!"); } ``` This is c code: ```cpp #include <stdio.h> int main() { printf("Hello World!\n"); return 0; } ``` This is not recognized: ```test This is a test ```