diff --git a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md index d61095d9a4..593aa74a50 100644 --- a/tutorials/C2V_translating_simple_programs_and_DOOM/README.md +++ b/tutorials/C2V_translating_simple_programs_and_DOOM/README.md @@ -47,6 +47,9 @@ It will create `primes.v` with the following contents: ```v +[translated] +module main + fn is_prime(x int) bool { for i := 2; i <= x / 2; i++ { if x % i == 0 {