| Pseudo.Net Modeler Demo
To use this demo, just enter a Pseudo.Net code
sample into the text box below, choose the language you want the output in, and
click "Generate." For a quick reference to the Pseudo.Net language, see
here.
Example:
ns Samples;
+c XmlDoc {
+Persons Persons;
}
+c Person {
+int Age;
+Name Name;
+Job Job;
}
+col Person Persons;
+c Name {
+string First;
+string Last;
}
+c Job {
+string Title;
+string Salary;
}
|
|
|
|