Created
December 7, 2018 04:45
-
-
Save sogaiu/05003bc5d862d9c8186ca5a8cbc1d073 to your computer and use it in GitHub Desktop.
sketch of MutableCell.cs for specter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class MutableCell | |
{ | |
private Object o; | |
public MutableCell(Object o) | |
{ | |
this.o = o; | |
} | |
public Object get() | |
{ | |
return o; | |
} | |
public void set(Object o) | |
{ | |
this.o = o; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment