| 6 | namespace TheStateMachine |
| 7 | { |
| 8 | sealed class Program |
| 9 | { |
| 10 | |
| 11 | public static void Main(string[] args) |
| 12 | { |
| 13 | var app = new App(); |
| 14 | new TheStateMachineStack(app, "TheStateMachineStack"); |
| 15 | app.Synth(); |
| 16 | } |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected