Just testing out the blog – howdy!
public class InquiringLife {
public static void main(String[] args) {
Thought thought = new Thought("Hello, World");
thought.contemplate();
}
}
class Thought {
private final String message;
public Thought(String message) {
this.message = message;
}
public void contemplate() {
// TODO: build out observation, reflection, & integration functionality
}
}
Discover more from inquiring life
Subscribe to get the latest posts sent to your email.