diff --git a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md index c5269012d6..d61095d9a4 100644 --- a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md +++ b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md @@ -18,7 +18,7 @@ and various expressions. ```c #include -#include +#include bool is_prime(int x) { for (int i = 2; i <= x / 2; i++) { @@ -35,7 +35,6 @@ int main() { } return 0; } - ``` We can translate the C file to V by simply running