Parenthesises
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 6 articles for 0.000 sec
Re: Verbose functional languages?     

Group: comp.lang.functional · Group Profile · Search for Parenthesises in comp.lang.functional
Author: David Golden
Date: Dec 6, 2007 07:35

... few rules in the syntax, and other complicated rules aren't simultaneously introduced. See: APL, which is infix but has a very simple right-to-left interpretation except where explicitly parenthesised. (People exposed to other languages before APL sometimes think it's harder than it really is, because they're used to infix operators having diverse precedences+associativities, and APL has ...
Show full article (1.86Kb) · Show article thread
Re: opening makefile with error message.     

Group: gnu.emacs.help · Group Profile · Search for Parenthesises in gnu.emacs.help
Author: Maciej Katafiasz
Date: May 9, 2007 15:06

... include makefile.definitions I don't understand the error message It seems that some part of font-lock is requesting the second submatch (in a regex, ie. the match for the second parenthesised part), which wasn't found. Hard to say why exactly that is, might be that some regex there is malformed, or maybe someone forgot to catch errors somewhere. The best starting point is to ...
Show full article (1.39Kb) · Show article thread
Re: ML vs. Lisp     

Group: comp.lang.functional · Group Profile · Search for Parenthesises in comp.lang.functional
Author: Jon Harrop
Date: Feb 12, 2007 21:03

Chris Rathman wrote: On Feb 12, 8:43 pm, Jon Harrop <j...@ffconsultancy.com> wrote: Can I just note that Chris had parenthesised expressions like: (1+(2*3)) I mean, ((f a) b) is bad but the above is ordinary maths! On a somewhat related subject... My thinking is that I really need to go through the motions of reconciling the F# and O'Caml code. Maybe. F# is ...
Show full article (1.59Kb)
Re: ML vs. Lisp     

Group: comp.lang.functional · Group Profile · Search for Parenthesises in comp.lang.functional
Author: Chris Rathman
Date: Feb 12, 2007 20:42

On Feb 12, 8:43 pm, Jon Harrop <j...@ffconsultancy.com> wrote: Can I just note that Chris had parenthesised expressions like: (1+(2*3)) I mean, ((f a) b) is bad but the above is ordinary maths! On a somewhat related subject... My thinking is that I really need to go through the motions of reconciling the F# and O'Caml code. The material in SICP really shouldn't dictate a ...
Show full article (0.93Kb)
Re: ML vs. Lisp     

Group: comp.lang.functional · Group Profile · Search for Parenthesises in comp.lang.functional
Author: Jon Harrop
Date: Feb 12, 2007 18:43

..., if only for the benefit of the reader. This is epecially true for Haskell, where operator binding precedence can be defined (almost) ad libitum. Can I just note that Chris had parenthesised expressions like: (1+(2*3)) I mean, ((f a) b) is bad but the above is ordinary maths! -- Dr Jon D Harrop, Flying Frog Consultancy OCaml for Scientists http://www.ffconsultancy.com/...
Show full article (0.59Kb)
writing a reliable algebra program     

Group: comp.lang.functional · Group Profile · Search for Parenthesises in comp.lang.functional
Author: Mark Tarver
Date: Dec 21, 2006 06:18

... 1. First begin by defining the syntax of your algebra. Since this is a post lets be simple; I'm supposing that algebraic expressions (exprs) are regimented into fully parenthesised form. Here are the type rules. (datatype expr __________________________ (number? X) : verified > X : number; X : number; _________ X : expr; if (not (...
Show full article (5.76Kb)