Double Quote
From Abap2Java
[edit]
ABAP
Double quotes (") indicate that the rest of the current line is a comment.
lv_sum = 1 + 1. "this is a comment
[edit]
Java
Double quotes (") indicate the start and end of character strings.
Double quotes (") indicate that the rest of the current line is a comment.
lv_sum = 1 + 1. "this is a comment
Double quotes (") indicate the start and end of character strings.