rusi/test/commonsym.c

20 lines
440 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#включить "тест.з"
#включить "stdvv.c"
цел x;
цел x = 5;
цел y = 7;
цел y;
цел common_ext1;
цел common_ext2 = 3; // <-- ДОБАВИТЬ ИНИЦИАЛИЗАЦИЮ!
стат цел common_local;
цел главн() {
ПРОВЕРИТЬ(5, x);
ПРОВЕРИТЬ(7, y);
ПРОВЕРИТЬ(0, common_ext1);
ПРОВЕРИТЬ(3, common_ext2);
печатьф("OK\n");
возврат 0;
}