We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8cdd6 commit 86e796eCopy full SHA for 86e796e
docs/get_started/hello_world.md
@@ -6,17 +6,17 @@ outline: [2, 4]
6
### Basic Example
7
Every abap2UI5 app is an implementation of the `Z2UI5_IF_APP` interface. Create a new class with the following code:
8
```abap
9
-CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
+CLASS zcl_app_hello_world DEFINITION PUBLIC.
10
11
PUBLIC SECTION.
12
INTERFACES z2ui5_if_app.
13
14
ENDCLASS.
15
16
-CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
+CLASS zcl_app_hello_world IMPLEMENTATION.
17
METHOD z2ui5_if_app~main.
18
19
- client->message_box_display( |Hello World!| ).
+ client->message_box_display( |Hello World| ).
20
21
ENDMETHOD.
22
0 commit comments