Skip to content

Instantly share code, notes, and snippets.

@joseph4tw
Created November 8, 2017 11:57
Show Gist options
  • Save joseph4tw/dbe9f325d4e5cae686d6102e61c86b0d to your computer and use it in GitHub Desktop.
Save joseph4tw/dbe9f325d4e5cae686d6102e61c86b0d to your computer and use it in GitHub Desktop.
Option Explicit
Public Sub MyPublicSub()
Call DoSomeWork
Call MyPrivateSub
End Sub
Private Sub DoSomeWork()
Debug.Print "Work work work work work"
End Sub
Private Sub MyPrivateSub()
MsgBox "Work complete!"
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment