mirror of
https://github.com/gonum/gonum.git
synced 2025-10-16 04:00:48 +08:00
40 lines
423 B
Plaintext
40 lines
423 B
Plaintext
# C preprocessing directives act as comments.
|
|
/* block comment */
|
|
// keywords are case-insensitive.
|
|
graph {
|
|
node []
|
|
Node []
|
|
NODE []
|
|
edge []
|
|
Edge []
|
|
EDGE []
|
|
subgraph {}
|
|
subGraph {}
|
|
Subgraph {}
|
|
SubGraph {}
|
|
SUBGRAPH S {}
|
|
A; B [style=filled, fillcolor=red]
|
|
C:nw -- D:se
|
|
"foo"
|
|
.10
|
|
-20
|
|
3.14
|
|
F [label=<<div>foo</div>>]
|
|
_foo
|
|
a10
|
|
}
|
|
Graph {
|
|
}
|
|
GRAPH {
|
|
}
|
|
digraph {
|
|
}
|
|
Digraph {
|
|
}
|
|
diGraph {
|
|
}
|
|
DiGraph {
|
|
}
|
|
DIGRAPH {
|
|
}
|