Parsing/RPN calculator algorithm: Difference between revisions

m
added a missing return to the v translation
(Added a V translation of C implementation)
m (added a missing return to the v translation)
Line 4,865:
if s.depth >= MaxDepth {
println('Stack Overflow!!')
return
}
s.data[s.depth] = v
Anonymous user