You may have many hundreds of 74 series chips, on an FPGA, without writing a single VHL line, only drawing the schematics,
Hundreds? Nah, many thousands!
I once worked out that the small FPGA was equivalent to a breadboard the size of a garage, and a (then) large but still obtainable one was equivalent to a basketball-court sized breadboard - complete with 100s of impossibly accurate wire-running gnomes.
The problem with schematic entry is the additional information required. Rather than "C <= A AND B", where A B and C are 8-bit wide buses, you have the following data to manage:
This is an AND gate "AND_1", at (x,y) with rotation of (r), and connections called A, B and C
A run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
B run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
C run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
his is an AND gate "AND_2", at (x,y) with rotation of (r), and connections called A, B and C
A run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
B run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
C run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
his is an AND gate "AND_3", at (x,y) with rotation of (r), and connections called A, B and C
A run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
B run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
C run from (x,y) to (x,y), with corners at (x,y), (x,y), (x,y) and (x,y).
....
and so on for eight gates required to AND two 8-bit values.
So rather than a few lines of HDL you end up with maybe 120 to 300 bits of data (all the 'x's and 'y's and 'r' and names and labels) that have to be managed manually - sure most of these are mouse clicks and moves, but it still is a lot of information that has nothing to do with the actual function of the design, only it's presentation to the designer.
If drawing schematics is your thing, than this might scratch your itch and keep you busy on a rainy day, but it is too much like doodling in the margins of a notebook...
But by all means start with schematic entry - you will quickly get frustrated by it you will want the "better way" that a higher level symbolic representation offers.