<?php

$stack = new SplStack();
$stack->push("HI");
$stack->push("from the stack");
var_dump($stack);
xdebug_var_dump($stack);
