A list of computer languages with release year and category
61–70 of 82 posts
Re: A list of computer languages with release year and category
#62Some of these have confusing type fields. Like asterius-compiler which is a "compiler", but apparently not a programming language? It seems pretty loose at what constitutes a "computer language", with numeralSystems, cloud, non-programmable text editors, and mathematical notation among other strange entries. It feels like there needs to be some kind of cutoff on what we're calling a language here. Maybe if it is Turi…
Re: A list of computer languages with release year and category
#63For those complaining that they need it sorted by date: curl https://raw.githubusercontent.com/codelani/codelani/master/langs.csv \ | awk -F "," '{print $NF, $0}' \ | sort -n \ | sed "s/^[^ ]* //" \ | less This will fetch the CSV, copy the date to the front, sort it, then remove the date. There are a lot of entries that don't have dates. If you want to remove them, pipe the result through: grep -v ",$"
Re: A list of computer languages with release year and category
#64For those complaining that they need it sorted by date: curl https://raw.githubusercontent.com/codelani/codelani/master/langs.csv \ | awk -F "," '{print $NF, $0}' \ | sort -n \ | sed "s/^[^ ]* //" \ | less This will fetch the CSV, copy the date to the front, sort it, then remove the date. There are a lot of entries that don't have dates. If you want to remove them, pipe the result through: grep -v ",$"
Re: A list of computer languages with release year and category
#65fortran-77 pl 1977 fortran-8x pl 1989 fortran-90 pl 1990
but not the earlier Fortran 66 aka Fortran IV and the later standards Fortran 95, 2003, 2008, and Fortran 2018. Numerous Fortran 95 compilers exist, and Cray, gfortran, IBM, Intel, and NAG have implemented much of Fortran 2008, according to http://fortranwiki.org/fortran/show/Fortran+2008+status .