class Program { int Double1(int n) => n + n; int Double2(int n) { return n + n; } }
© 2026 Hedgehog Software, LLC