diff --git a/src/zaxage_demo_01.prog.abap b/src/zaxage_demo_01.prog.abap index d484cb1..67a3752 100644 --- a/src/zaxage_demo_01.prog.abap +++ b/src/zaxage_demo_01.prog.abap @@ -72,9 +72,15 @@ CLASS main IMPLEMENTATION. engine = NEW #( ). - DATA(entrance) = NEW room( name = 'Entrance' descr = 'You are in the entrance area. Welcome.' ). - DATA(developer) = NEW room( name = 'Developers office' descr = 'The developers area. be quiet!' ). - DATA(consulting) = NEW room( name = 'Consulting Department' descr = 'This is the area where the consultants work. Bring coffee!' ). + DATA(entrance) = NEW room( + name = 'Entrance' + descr = 'You are in the entrance area. Welcome.' ). + DATA(developer) = NEW room( + name = 'Developers office' + descr = 'The developers area. be quiet!' ). + DATA(consulting) = NEW room( + name = 'Consulting Department' + descr = 'This is the area where the consultants work. Bring coffee!' ). engine->map->add_room( entrance ). engine->map->add_room( developer ).