module gate00 (a,b,c);
input a,b;
output c;
assign c=a&b;
endmodule
c
a
b
module gate00
モジュール名に
ANDは使いたくない
予約語に「and」があり、
後々問題になることがある