Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Store data into array by looping?

by ameezys (Acolyte)
on Apr 09, 2019 at 16:17 UTC ( [id://1232356]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    module circuit_17 (N1,N2,N3,N6,N7,N22,N23);
    input N1,N2,N3,N6,N7;
    ...
    nand nand2_5 (N22,N10,N16);
    nand nand2_6 (N23,N16,N19);
    endmodule
    
  2. or download this
        my $gate_DATA = $_;
        if (defined($gate_DATA) && ($gate_DATA =~ /(.*) (.*) \((.*),(.*),(
    +.*)\);/) && ($gate_DATA !~ /module/) )    
    ...
            @input_A = $4;
            @input_B = $5;
            }
    
  3. or download this
    @input_A = [ N1 N3 N11 N11 N10 N16 ]
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1232356]
Approved by LanX
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-23 06:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found