<div dir="ltr">Middle posting follows:<div><br></div><div>First there are a few things going on.</div><div><br></div><div>There is the language or languages used by the developers of the spreadsheet product. There is the language of the spreadsheet itself. There are the programming languages used by the developers of the spreadsheet (say accounting power users), like VBA.</div><div><br></div><div>Case A:</div><div>So for Excel:</div><div><br></div><div>Implementation Language: MS C++ (my guess), </div><div>Spreadsheet Language: Excel, </div><div>Built-in Language VBA. (Excel HAS a programming language and tool.)</div><div><br></div><div>Case B:</div><div>For Emacs OrgMode spreadsheets (a weird little spreadsheet in a tool whose main purpose is hardly being a spreadsheet.)</div><div>(See <a href="http://orgmode.org/manual/The-spreadsheet.html#The-spreadsheet">http://orgmode.org/manual/The-spreadsheet.html#The-spreadsheet</a> )</div><div><br></div><div>Imlementation Language: Emacs Lisp (my guess),</div><div>Spreadsheet languages: Emacs Calc, and Emacs Lisp,</div><div>Built-in Language: I'm not sure it has one. Given the fact that you can write ELisp in the cells, it may not need one. However, it also doesn't look like a full-blown 3d spreadsheet.</div><div><br></div><div>Case C:</div><div>For the proposed Scriptsheets product:</div><div><br></div><div>Implementation Languages: Frege (?), Java, Haskell, C++, C, in that order.</div><div>Spreadsheet languages: Scriptsheets,</div><div>Bulit-in language: Scriptsheets. (Scriptsheets IS a programming language and tool.)</div><div><br></div><div>Note that a spreadsheet product can have programming languages, it can be a programming language, and it can interpret (or very quickly compile) programming statements in a language such as ELisp or Haskell within the cells of the spreadsheet itself. The features are not mutually exclusive.</div><div><br></div><div>I meant to imply that I was interested in Case C, and I believe Joachim understood me to be interested in Case B (but not Emacs OrgMode as a specific example of Case B).</div><div><br></div><div>Middle posting follows.</div><div><br></div><div><br></div><div><div class="gmail_quote"><div dir="ltr">On Sun, Nov 19, 2017 at 5:07 AM Joachim Durchholz <<a href="mailto:jo@durchholz.org">jo@durchholz.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Am 19.11.2017 um 08:05 schrieb trent shipley:<br>
> * Is a spreadsheet you can program from the spreadsheet a reasonable goal?<br>
<br>
I.e. use the same programming language for cells formulae and scripts?<br>
Yes, that's very much reasonable.<br></blockquote><div><br></div><div>That is possible.</div><div><br></div><div>However, I am interested in programming scripts in spreadsheet, not say, programming formula in Haskell.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
> * Has it been done?<br>
<br>
Not in any mainstream spreadsheet. Which boils down to two: Excel and<br>
Open/Libre Office Calc.<br>
Excel offers VBA.<br>
Calc is actually language-agnostic and uses URLs and XML to tie things<br>
together. It currently supports BeanShell (Java-without-types, it<br>
seems), Java, JS, Python, and OO Basic.<br>
<br>
> So the plan is to take something like GNUmeric or LibreOffice Calc and<br>
> graft on a primitive function sheet interpreter.<br>
<br>
The main point is that you'd have to replace the formular language.<br>
I do not think that Calc was made for that.<br>
<br>
> It would be natural to use C++,<br>
<br>
You'd instantly kill adoption with that. Only a minimal part of the Calc<br>
user base is even remotely capable of coding formulae in C++, and even<br>
of these, a substantial fraction would be able but unwilling.<br></blockquote><div><br></div><div>Agreed. I was not thinking of programming cells in C++. I was thinking of moving Scriptsheets from vaporware to proof of concept and beyond using C++ by the PROJECT developers (in large measure to appropriate existing FOSS code).</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
 > but the astute will note that a<br>
> spreadsheet basically does not rewrite cells (unless you use a circular<br>
> reference), so I'd also like to use a functional language, maybe Haskel.<br>
<br>
You don't want to inline the formulae of other cells anyway, because<br>
then the calculation will be done twice: Once to fill the referenced<br>
cell, and once as part of the referencing cell.<br>
<br>
So for reference cycles, you'll rely on whatever the spreadsheet is<br>
already doing to deal with them.<br></blockquote><div><br></div><div>Exactly, at least until your forked product goes from, say, version 1.0 to version 2.0.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> * Would using a functional language as a basic language of the project<br>
> save effort and intellectual load?<br>
<br>
That depends on whether you're talking about the implementation language<br>
or the cell/macro language.<br></blockquote><div><br></div><div>I was talking about implementation language.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
For the implementation language, you'll save the most time by using<br>
whatever you already know. Unless the project is going to last longer<br>
than, say, two years. And if you plan on getting other people to join<br>
the project, you'll want the language with the largest pool of<br>
interested and able people, which is essentially guesswork but I'd<br>
avoid, say, the VBA or PHP crowd ;-)<br></blockquote><div><br></div><div>Would there be any advantage over preferring a functional over an imperative language given that Scriptsheets (as a full blown product) would itself be a functional language.</div><div> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
For the user-facing language, do whatever is easy to use for a<br>
non-programmer. Haskell should work fine, but prepare to collect<br>
references to tutorials, and what does *not* work fine is performance<br>
predictions, particularly not for nonprogrammers. This probably means<br>
you need strict evaluation, which means even if it looks like Haskell<br>
it's going to be an entirely different language.<br>
<br>
> In the longer term I'd like as much of the spreadsheet programmable as a<br>
> spreadsheet to be written to run on the JVM.<br>
> As near as I can tell near future Java and typed functional languages,<br>
> include the following options:<br>
><br>
> Eta,<br>
> Frege,<br>
> Kotlin and,<br>
> Scala.<br>
<br>
I don't know any of these well enough to make any recommendations.<br>
<br>
However, for the user-facing language, you need this:<br>
1) As easy to learn as possible.<br>
2) Scales well to a few thousand lines of code. The learning curve must<br>
not have bumps along that road, because with every bump, a substantial<br>
fraction of the user base will be deterred from progressing to more<br>
complicated tasks.<br>
3) You'll need good support for large-scale programming if you want to<br>
enable "just calling" into third-party modules (which would be pretty<br>
appealing to people who use Calc for nontrivial stuff). The JVM excels<br>
at this, BTW, though if you don't use Java, a substantial fraction of<br>
Maven modules will be awkward to use.<br>
<br>
For (3), you'll need static typing.<br>
For (1) - and arguably (2) and (3) as well - you need something that is<br>
excellent at type inference.<br>
<br>
Type inference does not work well for updatable data structures, so you<br>
will want something that excels at handling immutable data. Which<br>
essentially rules out C++ or any other imperative language.<br>
The type system is a real problem. For many real-world situations you<br>
need dependent types, but these have complicated error situations so<br>
newbies will usually be unable to deal with it, which means a bump in<br>
the learning curve. I don't know of a good way to deal with that, it's<br>
just on the list of things that I routinely check if somebody asks me to<br>
take a look at his great new language :-) (Haskell people excel at<br>
bending its type system to simulate all kinds of things, and I wouldn't<br>
be surprised if nobody had tried to achieve most dependent-type benefits<br>
from Haskell's type system; however, people using such a type framework<br>
will need to know the Haskell type system and the internals of the<br>
framework to make sense of any error messages that come out of a type<br>
bug, so this is a variant of programmer's golf, not something you want<br>
for newbies and learners.)<br>
<br>
The JVM would be desirable, but typical .jar modules make heavy use of<br>
mutable data. So you need something that's alien to mutable data types<br>
but not incompatible with then; that's a relative fine line that the<br>
language design would have to strike.<br>
I'd probably use a language that allows mutables but disallows aliases<br>
to them. Clean does this via the type system, other strategies might be<br>
work. However, given that arbitrary modules from the JVM ecosystem might<br>
throw aliased updateable references left and right, all guarantees are<br>
off as soon as a computation relies on data provided from a JVM module,<br>
so maybe it's still not worth using that. (Java folks have been thinking<br>
about "value types", i.e. immutables, for a while now, but I don't see<br>
that coming any year soon.)<br>
<br>
Evalutation strategy is another issue.<br>
Non-strict has some nice properties, in particular you don't need to<br>
differentiate between an expression and its value. However, nonstrict is<br>
difficult to control performance-wise, and I still see people struggle<br>
if they see that their code is unexpectedly slow.<br>
<br>
> Note that a spreadsheet needs to give the satisfaction of immediate<br>
> results, or failing immediate results, the sensation of actively<br>
> working, so if the language could be interpreted that would be a huge help.<br>
<br>
+1<br>
<br>
> * Which combination of typed, compiled, interpreted, FOSS functional<br>
> language that runs on the JVM, JAVA, Haskell, C++, C, used in that order<br>
> of preference, makes the most sense for the Java compatible functional<br>
> language at the top of the preference hierarchy?<br>
<br>
C++ and C aren't worth it if you plan to go for the JVM.<br>
Don't know if there's a useful JVM port of Haskell.<br>
<br></blockquote><div><br></div><div>I know Hadoop in in Java, except where speed is of essence, then Hadoop uses C++ or sometimes C. I figure the same would be true for this project.</div><div><br></div><div>For Haskell on JVM see Eta and Frege. Frege is the older project. Neither seem to be particularly mature.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
You *can* interface with OO using XML descriptors and such, so the JVM<br>
isn't your only option. You could even use (or invent) a language that<br>
compiles to binary, with LLVM that has become a realistic option.<br>
However, plan to invest some time into understanding LLVM.<br>
<br></blockquote><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> Note also, that I have only the equivalent of an AA degree from a CIS,<br>
> not a CS, perspective, so the odds are the whole idea is vaporware,<br>
> unless I can determine feasibility and desirability,<br>
<br>
I suspect that no existing language fits the bill.<br>
Given your background, you'll need somebody with language design<br>
experience; language design is hard because of so many conflicting goals.<br>
<br>
 > then sweet talk<br>
> real developers to help out.<br>
<br>
That's a good plan :-)<br></blockquote><div><br></div><div>Do you know any gullible developers with the chops?</div><div><br></div><div>Which do you see as more promising a real GUI spreadsheet for Case B or one for Case C? Or would it make sense to be ambitious and try to do both in the same project using a common spreadsheet core backend and largely shared front end?</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
_______________________________________________<br>
Haskell-Cafe mailing list<br>
To (un)subscribe, modify options or view archives go to:<br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
Only members subscribed via the mailman list are allowed to post.</blockquote></div></div></div>