From 83084913e8f7d3ab6cca5c0eef6c628a370e39c3 Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Wed, 15 Apr 2020 23:18:47 +0200 Subject: [PATCH] Docs updated --- docs/src/basic.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/basic.md b/docs/src/basic.md index 9f61f06..7b85575 100644 --- a/docs/src/basic.md +++ b/docs/src/basic.md @@ -16,6 +16,7 @@ The main purpose of the **Gnuplot.jl** package is to send data and commands to t The most important symbols exported by the package are the [`@gp`](@ref) (for 2D plots) and [`@gsp`](@ref) (for 3D plots) macros. The simplemost example is as follows: ```@example abc +using Gnuplot @gp 1:20 saveas("ex000") # hide ```