See that isn’t readable at all. I prefer syntax.
Edit: Ah u failed to actually press the button at the bottom!
61–70 of 184 posts
See that isn’t readable at all. I prefer syntax.
Edit: Ah u failed to actually press the button at the bottom!
Earlier quoted context omitted.
I think the OP perhaps wants to look at Apple Script?
The OP wants a modernized COBOL.
This article is like a litmus year for who actually reads the full article.
> Ultimately this: > FILE * test_file = fopen(“/tmp/test.txt”, “w+”); > Should become something like this: > create file /tmp/test.txt for input and output as test_file > Syntax highlighting should work instead of syntax notation just fine. I couldn't disagree more. The first example is easily scannable visually -- a variable is being created from a function call. I can tell because my eyes immediately notice the mid…
> But realistically, how often do you have to program high-performance computations? I suppose, unless you work in a narrow field of research and engineering that requires exactly that, not very often. And if you do, you have to use specialized hardware and compilers anyway. I’ll just presume, a typical 21st-century programmer don't have to solve differential equations very often. Does the author know about all the e…
The fact that we are using python, instead of fortran or matlab, really does show exactly how little hard math is being done by the computer, even in these fields.
Earlier quoted context omitted.
I don't agree with 'less syntax'. More syntax (when designed well) results is significantly more readable code.
How much experience do you have from C, Forth & Lisp? Spend enough time in these languages and you start seeing the world differently. Less syntax (when designed well) doesn't have to be unreadable.
There is a reason people choose boring imperative languages for large projects.
I did an internship at an 'Big 4' company which (from folklore) had a moderately large server written in Haskell, the codebase was a nightmare and eventually they ended up rewriting it in C++, which I believe they still use.
Really, this is worse? FILE * test_file = fopen(“/tmp/test.txt”, “w+”); than create file /tmp/test.txt for input and output as test_file Yeah, remove the ; and duplication of type: let test_file = fopen(“/tmp/test.txt”, “w+”)
Var Test_file = CreateFile("/tmp/test.txt",
erase-prev-version,
open-as-read-write);
... but of course that smells like Redmond's bait.Earlier quoted context omitted.
If you read all the words, wasn't it fairly obvious already without clicking to vote from the last few lines?
"The language for the 21st century should be business oriented, English-like and not dependent on native types. The most exciting thing, we already have the language exactly like this! What do you think it is?" Not to me, no. I thought this what some poll to gauge popularity of he various languages or some such.
> Ultimately this: > FILE * test_file = fopen(“/tmp/test.txt”, “w+”); > Should become something like this: > create file /tmp/test.txt for input and output as test_file > Syntax highlighting should work instead of syntax notation just fine. I couldn't disagree more. The first example is easily scannable visually -- a variable is being created from a function call. I can tell because my eyes immediately notice the mid…
Every attempt there has been to make code look like English hasn't worked out well. SQL, for example, is incredibly verbose, with complex syntax. This obscures what is otherwise very good semantics. I think this is why a lot of people hate writing queries.