I want to know how to execute two subroutines in parallel.
In Perl Tk, I am using one buttons widget and text widget.
Button : is to execute the parser function Text : is to display the print statement of the parser
Thing is that after executing the parser function only the text widget is getting executed [because Perl support sequential execution]
But I want both of them to be executed in parallel.