아래 부분에서 "윽윽" 이 부분은 무엇을 하는 공간인가요?
값을 바꾸어줘도 아무런 영향이 없는데 저 공간은 왜 있는건가요?
public void go()
{
JFrame frame = new JFrame();
JButton button = new JButton("There is no spoon...");
Font bigfont = new Font("윽윽", Font.BOLD, 14);
button.setFont(bigfont);
frame.getContentPane().add(BorderLayout.NORTH, button);
frame.setSize(200, 200);
frame.setVisible(true);
}