-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch02.tex
47 lines (32 loc) · 1.15 KB
/
ch02.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\chapter{\Large{First steps}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\exercise{2.1}
\begin{lstlisting}[language=Haskell,escapeinside=~~]
(2 ^ 3) * 4
(2 * 3) + (4 * 5)
2 + (3 * (4 ^ 5))
\end{lstlisting}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\exercise{2.2}
(생략)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\exercise{2.3}
주어진 스크립트에는 다음 세가지 문제점이 있다.
\begin{itemize}
\item 함수 이름이 소문자로 시작되지 않는다.
\item 함수를 인자 사이에서 쓰려면 따옴표(\texttt{'})가 아닌
역따옴표(\texttt{`})로 묶어야 한다.
\item \texttt{where} 다음에 오는 문장의 들여쓰기가 일치하지 않는다.
\end{itemize}
수정된 스크립트는 다음과 같다.
\haskell{./src/ch02-ex03.hs}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\exercise{2.4}
\haskell{./src/ch02-ex04.hs}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\exercise{2.5}
\haskell{./src/ch02-ex05.hs}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "master"
%%% End: