···88mon_dessin:draw()
99```
10101111-result :
1111+result for `print(mon_dessin:draw)` :
1212```html
1313<svg width="100" height="100" fill="transparent" stroke="#000000" version="1.1" xmlns="http://www.w3.org/2000/svg">
1414 <rect y="10" x="10" stroke-width="1" height="10" width="10" rx="0" ry="0" />
···2222# Documentation
2323**svg:create(width, height, stroke, fill)** *create the svg object*
24242525-Params:
2625- width: number => width of the drawing, default to 100
2726- height: number => height of the drawing, default to 100
2827- stroke: string => lines color, default to '#000000'
2929-- fill: string => fill color, default to 'transparent'2828+- fill: string => fill color, default to 'transparent'
2929+3030+**svg:add(element)** *add an element to the drawing*
3131+3232+- element: svg.Element => see farther for element list
3333+3434+**svg:draw()** *return the svg formated string*