summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/metago/example-program.mp
blob: bc5549fc0f3771a8c967a373dc4529cbc48cd89e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
input metago;

beginfig(1);

  set_board_color(0.2,0.4,0.6);
  set_board_size 18;
  init_board;
  
  put_b(B18);
  put_b(B16);
  put_b(A17);
  put_w(B17);
  put_b(C17);
  
  display_board;
  
endfig;

end