main = keep $ do th <- liftIO myThreadId -- thread 89 r <- async (do threadDelay 1000000; return "hello") -- thread 90 <|> async (return "world") -- thread 91 th' <- liftIO myThreadId -- thread 90 and 91 liftIO $ print (th, th', r) -- thread 90 and 91
Output:
(ThreadId 89,ThreadId 91,"world")
(ThreadId 89,ThreadId 90,"hello")
Sorry, here is some links:Wiki paga on GitHub https://github.com/agocorona/transient/wiki/Transient-tutorialProgramming at specification level https://github.com/agocorona/transient/wiki/Programming-at-the-specification-levelпн, 27 июн. 2016 г. в 23:19, Geraldus <heraldhoi@gmail.com>:Hi! Have you looked at Transient by Alberto Gomez Corona?пн, 27 июн. 2016 г. в 18:27, Corentin Dupont <corentin.dupont@gmail.com>:- the event DSL need to be instance of Alternative: events can be put in concurrence, the first to fire wins.- it should be possible to run the event DSL in a monad different from IO.Other requirements:I.e. if at some point in time the user program needs a boolean from the user, a radio button will be created on the screen of that user. The objective is to retrieve the boolean, creating the form is just a way to do that. Complex forms can be created, capable of generating full ADTs. The styling of the form is not important.I need a library with a DSL able to create forms on the fly, in a "demand driven" way.Hi Joachim,I agree... I looked hard at them :)
https://wiki.haskell.org/Functional_Reactive_Programming_______________________________________________On Mon, Jun 27, 2016 at 10:25 AM, Joachim Breitner <mail@joachim-breitner.de> wrote:Hi,
Am Montag, den 27.06.2016, 09:38 +0200 schrieb Corentin Dupont:
> I need it for the game Nomyx, but couldn't find the features I wanted
> from the existing libraries.
any chance to extend existing libraries to support what you need?
Library proliferation does not really help the ecosystem.
Greetings,
Joachim
--
Joachim “nomeata” Breitner
mail@joachim-breitner.de • https://www.joachim-breitner.de/
XMPP: nomeata@joachim-breitner.de • OpenPGP-Key: 0xF0FBF51F
Debian Developer: nomeata@debian.org
_______________________________________________
Haskell-Cafe mailing list
To (un)subscribe, modify options or view archives go to:
http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe
Only members subscribed via the mailman list are allowed to post.
Haskell-Cafe mailing list
To (un)subscribe, modify options or view archives go to:
http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe
Only members subscribed via the mailman list are allowed to post.