### Lama: ```lama printf("hello\\nlama\n") ``` Command ``` lamac hello.lama && ./hello ``` Output ``` hello\ lama ``` ### C: ```C #include <stdio.h> int main(int argc, char *argv[]) { printf("hello\\nlama\n"); return 0; } ``` Command ``` gcc hello.c -o hello && ./hello ``` Output ``` hello\nlama ```