Added basic HTML generation and response handling.
[jrw.git] / src / jrw / sp / Text.java
diff --git a/src/jrw/sp/Text.java b/src/jrw/sp/Text.java
new file mode 100644 (file)
index 0000000..8e93829
--- /dev/null
@@ -0,0 +1,9 @@
+package jrw.sp;
+
+public class Text extends Node {
+    public final String text;
+
+    public Text(String text) {
+       this.text = text;
+    }
+}