Files
abap/exercises/practice/raindrops/zcl_raindrops.clas.abap
Marian Zeis 3b2e8e0eeb Exercise raindrops: fix input data type and testclass name (#34)
* fix input data type and testclass name

* change exp value to strings in testclass
2022-01-04 16:13:36 +01:00

16 lines
286 B
ABAP

CLASS zcl_raindrops DEFINITION PUBLIC.
PUBLIC SECTION.
METHODS raindrops
IMPORTING
input TYPE i
RETURNING
VALUE(result) TYPE string.
ENDCLASS.
CLASS zcl_raindrops IMPLEMENTATION.
METHOD raindrops.
* add solution here
ENDMETHOD.
ENDCLASS.