code-example
Version:
Language code example.
32 lines (26 loc) • 780 B
JavaScript
const code = `# Sample mscgen program
# See http://www.mcternan.me.uk/mscgen or
msc {
hscale="1.2";
a [label="Entity A"],
b [label="Entity B", linecolor="red", arclinecolor="red", textbgcolor="pink"],
c [label="Entity C"];
a => c [label="doSomething(args)"];
b => c [label="doSomething(args)"];
c >> * [label="everyone asked me", arcskip="1"];
c =>> c [label="doing something"];
c -x * [label="report back", arcskip="1"];
|||;
--- [label="shows's over, however ..."];
b => a [label="did you see c doing something?"];
a -> b [label="nope"];
b :> a [label="shall we ask again?"];
a => b [label="naah"];
...;
}
`;
export default code;