Marc Zeedar's First Page

Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text.

This is a test

This is a caption

class stockClass
  dim shares as double
  dim ticker as string
  dim price as double

  sub constructor(stockTicker as string, sharesHeld as double)
    ticker = stockTicker
    shares = sharesHeld
    price = cachedStockPrice(ticker)
  end sub

  function value() as double
    return price * shares
  end function
end class

Created by Marc Zeedar on Saturday, February 17, 2018.
For more information, please send mail to webmaster@example.com.