Untitled

 avatar
unknown
plain_text
2 months ago
149 B
4
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