namespace HeuristicLab.Problems.ProgramSynthesis.Push.Exporter { using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions; public static class Exporter { public static string ToString(Expression expression) { return expression.ToString(); } } }