Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Laravel on Hack

nunulk
February 11, 2017

Laravel on Hack

nunulk

February 11, 2017
Tweet

More Decks by nunulk

Other Decks in Programming

Transcript

  1. class SomeClass<T> { private Vector<T> $collection; public function __construct() {

    $this->collection = Vector {}; } public function add(T $element) { $this->collection[] = $element; } }