public static void Main()
Worldview show = new Worldview();
show.Author = "John Doe";
Worldview show2 = new Worldview()
var show3 = new Worldview("name");
Console.WriteLine("Default Constructor");
public Worldview(string author)
Console.WriteLine("Constructor with Author");
Console.WriteLine("Author.get");
Console.WriteLine("Author.set " + value);
public string WorldviewText
public void ShowWorldview()
Console.WriteLine($"Author: {Author} \nTitle: {DocTitle}\n");
Console.WriteLine("How many words per line? (16 recommended)");
numWordsPerLine = int.Parse(Console.ReadLine());
string text = WorldviewText;
String[] words = WorldviewText.Split(' ');
foreach (string word in words)
Console.Write(word + " ");
if (wordsPrinted == numWordsPerLine)
Console.WriteLine("\nEnter to Exit");