Longevity. The language I first learned in 1975 can be used to consume web services today.
Also, COBOL has a feature I hear people asking for every day. Given two records having fields of with the same names, you can do:
MOVE CORRESPONDING SOURCE-RECORD TO DESTINATION-RECORD.
and it will move the fields with the same name from one to the other, doing conversions as necessary. The lack of a feature like this is one of the barriers in the way of people adopting Data Transfer Objects for return from web services - you have to write the code to do the above, by hand, or use code generation.
I think there may have been an ADD CORRESPONDING
as well, but I'm not sure. The memory begins to go, after a while...