1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
namespace boo3 { int Fun1() { return 42; } } namespace boo4 { int Fun2() { int a = 7; int b = 8; return a+b; } }