Added basic HTML generation and response handling.
[jrw.git] / src / jrw / sp / Raw.java
1 package jrw.sp;
2
3 public class Raw extends Node {
4     public final String text;
5
6     public Raw(String text) {
7         this.text = text;
8     }
9 }