[package] [Java implementation] [Execution output]


ChainedCalls


import javax.swing.JButton;

void: main(String[]: args) = {
    s1 = JButton.new().toString();
    output << "JButton: " << s1 << "\n";

    b1 = JButton.new();
    output << "JButton: " << b1 << "\n";
}