1
const int a = 5;

2-1
int a ()
{
return 5;
}

2-2
int a () {
return 5;
}

저는 1보다는 2에 가깝다고 생각하고 있는데 제가 이해한 게 맞는 건가요?

- 엔타로 하스켈!