kevmoens / Ellabit

The interactive C# coding app to learn/practice coding.
MIT License
55 stars 21 forks source link

Allow challenges to examine console output for tests #23

Open kevmoens opened 1 year ago

kevmoens commented 1 year ago

When creating a challenge I would like the ability to capture output. This would allow challenges to be created so we can tell if a loop was used.

'''Csharp public void LoopWhile (double material) { while(material > 0) { Console.WriteLine(material); material -= 1; } } '''

kevmoens commented 1 year ago

create new challenge to list numbers 1-10 all on new lines