Added markdown example

pull/17/head
Matti Pastell 2014-12-06 00:18:25 +02:00
parent 70b2df47aa
commit 29d15b00b7
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Gadfly
```{julia term=true; fig_width=5}
using Gadfly
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
y = 20
plot(x=x, y = cos(x), Geom.line)
```
```{julia}
x = linspace(0, 200)
println(x)
```