8000
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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A nested string template causes the rest of the code to be shown as string. Possibly also has other side effects.
Code:
CLASS main DEFINITION CREATE PUBLIC. PUBLIC SECTION. METHODS run. PROTECTED SECTION. PRIVATE SECTION. ENDCLASS. CLASS main IMPLEMENTATION. METHOD run. DATA(foo) = `foo`. DATA(foo_up) = |x = { to_upper( |{ foo }| ) }|. WRITE / foo_up. ENDMETHOD. ENDCLASS.
The text was updated successfully, but these errors were encountered:
thanks
Sorry, something went wrong.
No branches or pull requests
A nested string template causes the rest of the code to be shown as string. Possibly also has other side effects.
Code:
The text was updated successfully, but these errors were encountered: