I\'ve read a few posts on here about static functions, but still am running into trouble with implementation.
I\'m writing a hardcoded example of Dijkstra\'s algorit
If I remember right any 'static' function is limited to the module in which it is implemented. So, 'static' prevents using the function in another module.