私はhereのこの単純なHelloワールドコードを持っていて、xsdという意味の行とその使い方を見つけることができません。このファイルはどこにあり、必要ですか?Scribbleプロトコルファイルのxsd行とは何ですか?
module scribble.example.Basic;
type <xsd> "{http://scribble.org/examples}Greetings" from "HelloWorld.xsd" as Greetings;
global protocol HelloWorld (role Me, role World) {
hello(Greetings) from Me to World;
hello(Greetings) from World to Me;
}
XSDは** XMLスキーマ定義言語**を意味します。 [This](http://stackoverflow.com/questions/2333998/what-is-the-difference-between-xml-and-xsd)説明は役に立ちます。 –