mirror of
https://github.com/gonum/gonum.git
synced 2025-10-18 13:10:47 +08:00
41 lines
451 B
Plaintext
41 lines
451 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>>]
|
|
H [label=<<div>→</div>>]
|
|
_foo
|
|
a10
|
|
}
|
|
Graph {
|
|
}
|
|
GRAPH {
|
|
}
|
|
digraph {
|
|
}
|
|
Digraph {
|
|
}
|
|
diGraph {
|
|
}
|
|
DiGraph {
|
|
}
|
|
DIGRAPH {
|
|
}
|