Slide 6
Slide 6 text
Before: 標準の table パッケージを用いた表組み
Menu Size Price
Ginger ale L $6.00
Orange juice L $8.50
Coca cola XL $12.50
match (ys, List.reverse ys) with
| (y0 :: y1 :: _, ylast :: _) ->
( match (xs, List.reverse xs) with
| (x0 :: _, xlast :: _) ->
[
thick (Gr.line (x0, y0) (xlast, y0));
thin (Gr.line (x0, y1) (xlast, y1));
thick (Gr.line (x0, ylast) (xlast, ylast));
]
| _ -> []
)
| _ -> []
)); %終わり
6/16