2025/06/19

Newest at the top

2025-06-19 17:16:29 +0200j1n37(~j1n37@user/j1n37) (Ping timeout: 252 seconds)
2025-06-19 17:16:04 +0200ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 252 seconds)
2025-06-19 17:11:34 +0200ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-06-19 17:10:30 +0200weary-traveler(~user@user/user363627) (Remote host closed the connection)
2025-06-19 17:05:20 +0200weary-traveler(~user@user/user363627) user363627
2025-06-19 17:04:33 +0200 <lortabac> (>>) is basically (=<<) with the arguments flipped and the argument of the continuation ignored
2025-06-19 17:04:29 +0200weary-traveler(~user@user/user363627) (Quit: Konversation terminated!)
2025-06-19 17:03:35 +0200 <lambdabot> m >> k = m >>= \_ -> k
2025-06-19 17:03:35 +0200 <lortabac> @src (>>)
2025-06-19 17:01:19 +0200 <lortabac> (=<<) for lists is concatMap
2025-06-19 17:00:51 +0200 <lambdabot> [1,2,1,2]
2025-06-19 17:00:50 +0200 <lortabac> > concat $ map (const [1, 2]) [undefined, undefined]
2025-06-19 17:00:38 +0200pavonia(~user@user/siracusa) (Quit: Bye!)
2025-06-19 17:00:11 +0200 <lambdabot> [1,2,1,2]
2025-06-19 17:00:09 +0200 <lortabac> > [undefined, undefined] >> [1, 2]
2025-06-19 16:58:58 +0200soverysour(~soverysou@user/soverysour) (Ping timeout: 268 seconds)
2025-06-19 16:56:51 +0200 <int-e> It's https://hackage.haskell.org/package/base-4.21.0.0/docs/Control-Monad.html#v:-62--62-
2025-06-19 16:56:34 +0200 <wbooze> uhuh, that's not right shift either it seems
2025-06-19 16:56:19 +0200 <lambdabot> "2"
2025-06-19 16:56:17 +0200 <wbooze> > "9" >> "2"
2025-06-19 16:55:41 +0200 <lambdabot> "3"
2025-06-19 16:55:40 +0200 <wbooze> > "9" >> "3"
2025-06-19 16:55:18 +0200 <wbooze> ah, not defined yet
2025-06-19 16:55:11 +0200 <lambdabot> • Perhaps you meant one of these:
2025-06-19 16:55:11 +0200 <lambdabot> • Variable not in scope: <<
2025-06-19 16:55:11 +0200 <lambdabot> error:
2025-06-19 16:55:10 +0200 <wbooze> :t (<<)
2025-06-19 16:55:04 +0200 <wbooze> or you didn't define it yet ?
2025-06-19 16:54:45 +0200 <lambdabot> Monad m => m a -> m b -> m b
2025-06-19 16:54:44 +0200 <int-e> :t (>>)
2025-06-19 16:54:22 +0200 <wbooze> is that right-shift left-shit ?
2025-06-19 16:54:16 +0200 <wbooze> uhuh
2025-06-19 16:54:10 +0200 <lambdabot> "3"
2025-06-19 16:54:08 +0200 <wbooze> > "2" >> "3"
2025-06-19 16:53:58 +0200 <lambdabot> • Perhaps you meant one of these:
2025-06-19 16:53:58 +0200 <lambdabot> • Variable not in scope: (<<) :: [Char] -> [Char] -> t
2025-06-19 16:53:57 +0200 <lambdabot> error:
2025-06-19 16:53:56 +0200 <wbooze> > "2" << "3"
2025-06-19 16:53:42 +0200 <lambdabot> "111"
2025-06-19 16:53:40 +0200 <wbooze> > "222" >> "1"
2025-06-19 16:52:17 +0200 <lambdabot> from the context: (Monad m, Num (m a), Num (m b))
2025-06-19 16:52:17 +0200 <lambdabot> • Could not deduce (Num (m a0))
2025-06-19 16:52:17 +0200 <lambdabot> error:
2025-06-19 16:52:16 +0200 <wbooze> > 222 >> 2
2025-06-19 16:52:07 +0200 <lambdabot> from the context: (Monad m, Num (m a), Num (m b))
2025-06-19 16:52:07 +0200 <lambdabot> • Could not deduce (Num (m a0))
2025-06-19 16:52:07 +0200 <lambdabot> error:
2025-06-19 16:52:05 +0200 <wbooze> > 22 >> 1
2025-06-19 16:50:36 +0200 <lambdabot> "222"
2025-06-19 16:50:35 +0200 <sprout> > "222" >> "2"