python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
in perl, what are the accepted terms for the script one invokes on the command line vs. the files that script requires?
I write perl scripts that require other perl scripts. The "require"d scripts contain subroutine definitions. (I am not yet at the level of writing my own package or module; I just require fi...

Jacob Wegelin
Votes: 0
Answers: 2
Appropriate way to return an arrayref from a sub with optional sorting in Perl version 5.20
I try to write a subroutine under Perl 5 version 5.20, that creates a large directory list stored in an array. The subroutine returns the result as an arrayref. For convenience reasons I want the have...

huckfinn
Votes: 0
Answers: 1
Where to put assembly subroutines in boot sector file
I have the following boot sector written in nasm:
[org 0x7c00]
my_print_function:
mov ah, 0x0e
int 0x10
ret
_start:
mov al, 'A'
call my_print_function
call my_print_function
...
Christoffer Corfield Aakre
Votes: 0
Answers: 1
Unable to call sub with if
I am trying to call validation with if but the same not working and other line is continue executing, please help.
Private Sub BtnCreateInvioce_Save_Click(sender As Object, e As EventArgs) Handles Btn...
Sahanee Ram Patel
Votes: 0
Answers: 1