Skip to content

Instantly share code, notes, and snippets.

@ORBAT
Last active December 21, 2015 02:59
Show Gist options
  • Select an option

  • Save ORBAT/6239072 to your computer and use it in GitHub Desktop.

Select an option

Save ORBAT/6239072 to your computer and use it in GitHub Desktop.
class Derp {
private var _lol:Boolean = false;
public function lolWut():Boolean {
return _lol;
}
public function Derp(lol: Boolean) {
_lol = lol;
}
}
var d: Derp = new Derp(true);
d.lolWut() == true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment