Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active June 27, 2024 11:47
Show Gist options
  • Save sheepla/67303e23e6a748a1f15846fbf7b76a31 to your computer and use it in GitHub Desktop.
Save sheepla/67303e23e6a748a1f15846fbf7b76a31 to your computer and use it in GitHub Desktop.
しかのこのこのここしたんたん.dot
digraph G {
node [shape=circle, fontsize=12];
edge [fontsize=10];
st [label="Start"];
shika [label="しか"];
noko [label="のこ"];
koshi [label="こし"];
tan [label="たん"];
end [label="End"];
st -> shika;
shika -> noko;
noko -> noko;
noko -> noko;
noko -> noko;
noko -> koshi;
koshi -> tan;
tan -> tan;
tan -> tan;
tan -> end;
}
@sheepla
Copy link
Author

sheepla commented Jun 27, 2024

Requires GraphViz

Usage:

dot -Tpng < shikanoko.dot > shikanoko.png

Will ouput:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment