Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
// Create an empty stack
Handle = SRP_Stack("Create")

// Push an element
SRP_Stack("Push", Handle, "SRP")
SRP_Stack("Push", Handle, "Computer")
SRP_Stack("Push", Handle, "Solutions")

// If we get the count, it will be 13
Count = SRP_Stack("Count", Handle)

// Play nice with memory
SRP_Stack("Release", Handle)

...