module table_t %set use_routine_names = true export w,x,y,z,ar,br,xx,ww,wc declare color is [red,blue,green] a is array [red..blue] of integer b is array [1..10] of integer int is integer initially 5 c is array [1..5] of int z = table a ( 1,2,3) y = table a ( 1) x = table b (1,2,3,4,5,6,7,8,9,10,11) w = table b (1,2,3,4,5,6,7,8,9) wc = table c (1,2) ww = table b (1) xx = table b (1,2,3,4,5,6,7,8,9,10,11, 1,2,3,4,5,6,7,8,9,10,11) ar : static b initially table b (1,2,3,4,5,6,7,8,9,10,11) br : static b initially table b (1,2) enddeclare endmodule