using System.IO; namespace compiler { public class ObstaclePyWriter : IWriter { public void Write(string path, TestParser.Node rootNode) { var targetFile = Path.Combine(path, "obstacle.py"); File.WriteAllText(targetFile, $@" # ToDo: Add Python Code "); } } }