This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var cowSay = new CowSayBuilder(); | |
cowSay.writeln("Hello world"); | |
cowSay.writeln("I made a dart thing"); | |
cowSay.writeln("Woooo 100 days of code!!!"); | |
print(cowSay.toCowSay()); | |
} | |
class CowSayBuilder { | |
List<String> cowSays = new List<String>(); |