Skip to content

Instantly share code, notes, and snippets.

@sogaiu
Created December 7, 2018 04:45
Show Gist options
  • Save sogaiu/05003bc5d862d9c8186ca5a8cbc1d073 to your computer and use it in GitHub Desktop.
Save sogaiu/05003bc5d862d9c8186ca5a8cbc1d073 to your computer and use it in GitHub Desktop.
sketch of MutableCell.cs for specter
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