Skip to content
Snippets Groups Projects
Thought.java 140 B
Newer Older
  • Learn to ignore specific revisions
  • package sample;
    
    public class Thought {
    
    Eirik Martin Danielsen's avatar
    Eirik Martin Danielsen committed
        public String thoughtText;
    
        public Thought(String txt){
            thoughtText = txt;
        }