click_event static method
click ──╮─→ $tag on ╰─→ $id with ╰─→ $attributes
Implementation
static void click_event(String tag, String id, String attributes) {
"click".write(inYellow);
" ──╮─→".write(inRed);
" $tag".writeLine(inPurple);
"on".write(inYellow);
" ╰─→".write(inRed);
" $id".writeLine(inWhite);
"with".write(inYellow);
" ╰─→".write(inRed);
" $attributes".writeLine(inWhite);
}