Newest at the top
2025-01-27 05:46:45 +0100 | simplystuart | (~simplystu@c-75-75-152-164.hsd1.pa.comcast.net) (Ping timeout: 248 seconds) |
2025-01-27 05:46:08 +0100 | penteract | (~toby@blbn-12-b2-v4wan-167809-cust345.vm18.cable.virginm.net) (Ping timeout: 272 seconds) |
2025-01-27 05:43:42 +0100 | merijn | (~merijn@128-137-045-062.dynamic.caiway.nl) merijn |
2025-01-27 05:42:59 +0100 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 265 seconds) |
2025-01-27 05:42:10 +0100 | alfiee | (~alfiee@user/alfiee) (Ping timeout: 252 seconds) |
2025-01-27 05:39:46 +0100 | ColinRobinson | (~juan@user/JuanDaugherty) (Exeunt DS Producers) |
2025-01-27 05:37:58 +0100 | alfiee | (~alfiee@user/alfiee) alfiee |
2025-01-27 05:36:14 +0100 | <Tikosh> | no worries |
2025-01-27 05:35:45 +0100 | <haskellbridge> | <sm> I'm not very good at chat 🤣 |
2025-01-27 05:35:39 +0100 | <Tikosh> | no i get it. |
2025-01-27 05:35:29 +0100 | <Tikosh> | oh! lol! thank you! |
2025-01-27 05:35:29 +0100 | <int-e> | or trying to; it became awkward somehow |
2025-01-27 05:35:20 +0100 | <int-e> | he's cheering you on |
2025-01-27 05:35:15 +0100 | <int-e> | nah |
2025-01-27 05:35:13 +0100 | <haskellbridge> | <sm> no, I'm saying good work :) |
2025-01-27 05:35:02 +0100 | <Tikosh> | oh! you want me to leave. okay! |
2025-01-27 05:34:41 +0100 | <haskellbridge> | <sm> go go go, have fun |
2025-01-27 05:34:09 +0100 | <Tikosh> | yea? |
2025-01-27 05:33:06 +0100 | <haskellbridge> | <sm> go Tikosh |
2025-01-27 05:32:36 +0100 | merijn | (~merijn@128-137-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2025-01-27 05:31:51 +0100 | <yahb2> | 42 'q' |
2025-01-27 05:31:51 +0100 | <int-e> | % putStrLn it |
2025-01-27 05:30:45 +0100 | aforemny_ | (~aforemny@2001:9e8:6ce1:cf00:b6f1:625c:54b4:a44b) (Ping timeout: 248 seconds) |
2025-01-27 05:30:06 +0100 | aforemny | (~aforemny@i577B125E.versanet.de) aforemny |
2025-01-27 05:28:53 +0100 | <int-e> | also, that's an opinion, ymmv |
2025-01-27 05:28:43 +0100 | <EvanR> | hmm |
2025-01-27 05:28:28 +0100 | <int-e> | in terms of writing the code :P |
2025-01-27 05:28:07 +0100 | <EvanR> | why is that |
2025-01-27 05:28:00 +0100 | merijn | (~merijn@128-137-045-062.dynamic.caiway.nl) merijn |
2025-01-27 05:27:50 +0100 | <int-e> | EvanR: It's probably too much information, but `unwords` is unironically superior to repeated ++ " " ++ that often appear in manual formatting of several values. |
2025-01-27 05:27:19 +0100 | <EvanR> | stringly typed languages ftw |
2025-01-27 05:27:03 +0100 | merijn | (~merijn@128-137-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2025-01-27 05:26:59 +0100 | <EvanR> | just kidding |
2025-01-27 05:26:50 +0100 | <EvanR> | you made a string containing values of different types! |
2025-01-27 05:26:08 +0100 | <yahb2> | "42 'q'" |
2025-01-27 05:26:08 +0100 | <int-e> | % unwords [show 42, show 'q'] |
2025-01-27 05:25:15 +0100 | <yahb2> | "42'q'" |
2025-01-27 05:25:15 +0100 | <mauke> | % show 42 <> show 'q' |
2025-01-27 05:24:40 +0100 | <lambdabot> | print x = putStrLn (show x) |
2025-01-27 05:24:40 +0100 | <mauke> | @src print |
2025-01-27 05:23:31 +0100 | <Tikosh> | Thank you so much for your instruction |
2025-01-27 05:22:06 +0100 | merijn | (~merijn@128-137-045-062.dynamic.caiway.nl) merijn |
2025-01-27 05:20:51 +0100 | <yahb2> | Hello World! |
2025-01-27 05:20:51 +0100 | <EvanR> | % putStrLn "Hello World!" |
2025-01-27 05:20:31 +0100 | <Tikosh> | i was intending to make a console application. i only run it from the REPL. did not compile it, yet. |
2025-01-27 05:19:48 +0100 | <Tikosh> | oh. i see |
2025-01-27 05:19:36 +0100 | <EvanR> | notice the quotation marks |
2025-01-27 05:19:27 +0100 | <yahb2> | "Hello World" |
2025-01-27 05:19:27 +0100 | <EvanR> | % print "Hello World" |
2025-01-27 05:19:20 +0100 | <yahb2> | 7 |