Discussion:
[elm-discuss] Compile problem between elm version
r***@gmail.com
2017-11-28 16:54:42 UTC
Permalink
Hi All :),
some years ago I wrote a very simple program to generate binary trees.

Now Elm won't compile, complaining on

type alias L = [(Float, Float)]

Someone can help me? Many thanks,
Rosario
--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Aaron VonderHaar
2017-11-28 17:03:31 UTC
Permalink
Hi!

[(Float, Float)] should now become:

List (Float, Float)


On Nov 28, 2017 8:54 AM, <***@gmail.com> wrote:

Hi All :),
some years ago I wrote a very simple program to generate binary trees.

Now Elm won't compile, complaining on

type alias L = [(Float, Float)]

Someone can help me? Many thanks,
Rosario
--
You received this message because you are subscribed to the Google Groups
"Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elm-discuss+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
r***@gmail.com
2017-11-29 11:03:50 UTC
Permalink
Many thanks Aaron!

The html output of Evan's elm-graphics
<https://github.com/evancz/elm-graphics>
is Svg, Png or other?

Thanks,
Rosario

Il giorno martedì 28 novembre 2017 18:03:38 UTC+1, Aaron VonderHaar ha
Post by Aaron VonderHaar
Hi!
List (Float, Float)
Hi All :),
some years ago I wrote a very simple program to generate binary trees.
Now Elm won't compile, complaining on
type alias L = [(Float, Float)]
Someone can help me? Many thanks,
Rosario
--
You received this message because you are subscribed to the Google Groups
"Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...