1#version 130 2 3void main() 4{ 5 int defined = 2; 6 int undefined; 7 int myInt; 8 9 myInt %= undefined; 10 myInt %= defined; 11} 12 13