(no title)
mrkmarron | 5 years ago
We also have a webinar with Q&A scheduled for Thursday morning (https://note.microsoft.com/MSR-Webinar-Programming-Languages...) which may be of interest as well.
mrkmarron | 5 years ago
We also have a webinar with Q&A scheduled for Thursday morning (https://note.microsoft.com/MSR-Webinar-Programming-Languages...) which may be of interest as well.
the_duke|5 years ago
The code samples look a lot like Swift, with some C++/Rust/Scala/general ML sprinkled in, so I can't see anything special here directly.
Especially relating to the promise of being as easy as Typescript but as efficient as C++/Rust/etc.
If there are great ideas in here, I'm happy to hear about them, but they should be at least be mentioned and referenced clearly.
tomp|5 years ago
1. How does the GC work? It says "novel reference counting" does that mean it leaks cycles or handles them (either by also tracing or preventing them statically)?
2. Is that the only thing it does to provide a C++-like "resource efficient and predictable runtime"? After all, that's basically Swift (or Python+static types). I think the main improvement that C++ (and C# and Go) have over languages like Java is ability to avoid heap-allocated objects (i.e. stack-allocated structs).
3. it looks like, but it's not entirely clear, that the compiler checks preconditions at compile time - so e.g. I shouldn't be able to call `divide(a, b)` without proving that `b != 0` - is this the correct interpretation? How do you handle mutability and/or concurrency, if at all?
mrkmarron|5 years ago
1. By design the language provides some novel memory invariants including, no cycles in the object graph, no old-to-new pointers, and no pointer updates. Thus, we don't need to worry about cycle collection, can greatly reduce the number of Ref-Count operations, and can (later) employ pool allocation more consistently.
2. Bosque also supports by-value types (including the future ability to do by-value unions) and, since the language is referentially transparent, the compiler can aggressively use stack allocation and copy semantics. Also, the collections are all fully determinized and use low-variance implementations to avoid "bad luck" performance anomalies.
3. The compiler does not enforce the checks. They can either be checked at runtime or checked by converting the program into a logical form that Z3 or another theorem prover can check. Values in the language are immutable and there is no concurrency (yet) but since the language is immutable concurrency is by definition data-race free.
pjmlp|5 years ago
Sadly Java has not taken this into account, nor AOT support out of the box, and now it is catching up with it.
sachinjoseph|5 years ago
tomp|5 years ago
dkersten|5 years ago
dmix|5 years ago
https://learnxinyminutes.com/docs/standard-ml/
garyclarke27|5 years ago
carlmr|5 years ago
>The Bosque language fuses functional programming with block scopes and {...} braces by allowing multiple assignments to updatable variables var
This seems like a contradiction. There should only be an if-expression if 0.1 is correct. Not a branch
Garlef|5 years ago