Skip to content
Snippets Groups Projects
Thought.java 141 B
Newer Older
package sample;

public class Thought {
    private String thoughtText;

    public Thought(String txt){
        thoughtText = txt;
    }