Untitled

Anonymous
plain_text
01/17/2025 2:11 PM
200 B
12
Indexable
class TestClass
{
    private int c = 0; 

    public void set(int value) {
      c = value;
    }

    public int get() {
        return c;
    }
}
Editor is loading...
Leave a Comment