Compilers Lab - Lecture 3
Compilers Lab - Lecture 3
Comments
#include <iostream>
#include <string>
int main() {
string code = "int main() { // This is a single-line comment\n"
" /* This is a multi-line comment\n"
" that spans multiple lines */ return 0; }";
string comment;
return 0;
}