Hi, I like hyphens.
Because many Linux commands use hyphens than underscores. Here are counts on my Debian GNU/Linux machine: % ls /usr/bin/ | grep -- - | wc -l 956 % ls /usr/bin/ | grep _ | wc -l 343 Thanks, -- kou In <20190806140340.2a7ffab2@fsol> "[Discuss] C++ filenames: hyphens or underscores?" on Tue, 6 Aug 2019 14:03:40 +0200, Antoine Pitrou <solip...@pitrou.net> wrote: > > Hello, > > The filenames in the C++ source tree are a bit ad hoc and inconsistent. > Sometimes they use hyphens for word separation, sometimes underscores. > In ARROW-4648 it was proposed that we unify C++ file naming, therefore > there are two possible options: only hyphens, or only underscores. > > What are your preferences? Personally, I have a slight preference for > hyphens, especially as they are already used in binary names. > > Regards > > Antoine. > >