chamsi09

Untitled

Nov 14th, 2024
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.22 KB | None | 0 0
  1. Module Module1
  2.     Sub Main()
  3.         CauseStackOverflow()
  4.     End Sub
  5.  
  6.     Sub CauseStackOverflow()
  7.         ' No base case, this will keep calling itself infinitely
  8.         CauseStackOverflow()
  9.     End Sub
  10. End Module
Advertisement
Add Comment
Please, Sign In to add comment