Slides: https://larshp.github.io/advent-2020-presentation/ Feel free to use the chat Will answer questions if time permits |
Decentralized version control system, it allows you to:
GitHub Hosting service for git, free for public projects.
|
started ~5 years ago | ~100000 lines | ||
~4300 commits | 7.02 and up | ||
110+ contributors | MIT License |
CLASS lcl_bar DEFINITION. ENDCLASS. CLASS lcl_bar IMPLEMENTATION. ENDCLASS. FORM foo. DATA(lo_moo) = NEW lcl_bar( ). ENDFORM. |
LOOP AT lt_strings INTO lv_string1. LOOP AT lt_strings INTO lv_string2. IF lv_string1 + lv_string2 = 2020. output = lv_string1 * lv_string2. output = condense( output ). WRITE output. RETURN. ENDIF. ENDLOOP. ENDLOOP.
for (const unique1 of abap.statements.loop(lt_strings)) { lv_string1.set(unique1); for (const unique2 of abap.statements.loop(lt_strings)) { lv_string2.set(unique2); if (abap.compare.eq(abap.operators.add(lv_string1,lv_string2), constant_2020)) { output.set(abap.operators.multiply(lv_string1,lv_string2)); output.set(abap.builtin.condense(output)); abap.statements.write(output); return; } } }
abapgit.org abaplint.org dotabap.org |