1 module test8509; 2 enum E : string { a = "hello", b = "world" } 3 main()4 void main() 5 { 6 E e1 = E.a ~ " world"; 7 E e2 = "hello " ~ E.b; 8 } 9