Logs: freenode/#haskell
| 2021-05-13 10:01:35 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 2021-05-13 10:01:57 | → | m0rphism joins (~m0rphism@HSI-KBW-085-216-104-059.hsi.kabelbw.de) |
| 2021-05-13 10:03:17 | <guest5> | thank you so much |
| 2021-05-13 10:03:19 | → | raehik1 joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
| 2021-05-13 10:04:35 | × | guest5 quits (5619784f@cpc143846-cosh20-2-0-cust78.6-1.cable.virginm.net) (Quit: Connection closed) |
| 2021-05-13 10:04:36 | → | Rudd0 joins (~Rudd0@185.189.115.108) |
| 2021-05-13 10:04:54 | → | shiraeeshi joins (~shiraeesh@109.166.58.127) |
| 2021-05-13 10:05:12 | <deejaytee> | welp and they're gone before I can tell them about compiler error messages :/ |
| 2021-05-13 10:06:39 | → | guest5 joins (5619784f@cpc143846-cosh20-2-0-cust78.6-1.cable.virginm.net) |
| 2021-05-13 10:09:25 | <deejaytee> | quest5: the giant error message you were getting was because of the lack of commas - Haskell was trying to pass everything after your first use of the `City` word to it, which was a lot of arguments, so it gave that big function type |
| 2021-05-13 10:10:11 | → | ozzymcduff joins (~textual@81-234-151-21-no94.tbcn.telia.com) |
| 2021-05-13 10:10:19 | → | Gurkenglas joins (~Gurkengla@unaffiliated/gurkenglas) |
| 2021-05-13 10:10:31 | → | nerdypepper joins (znc@152.67.162.71) |
| 2021-05-13 10:10:34 | × | plutoniix quits (~q@cm-119-76-33-155.revip17.asianet.co.th) (Quit: Leaving) |
| 2021-05-13 10:13:06 | → | malumore_ joins (~malumore@151.62.117.209) |
| 2021-05-13 10:14:04 | × | killsushi quits (~killsushi@2607:fea8:3d40:767:1ced:a9b2:1ba9:5b56) (Quit: Leaving) |
| 2021-05-13 10:15:40 | → | cole-h joins (~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) |
| 2021-05-13 10:15:53 | <guest5> | I've added all the commas but i'm getting a message still about the type. this is the updated code and the error - the error is repeated loads for each element |
| 2021-05-13 10:15:56 | <guest5> | https://paste.tomsmeding.com/jom2DyA2 |
| 2021-05-13 10:17:37 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2021-05-13 10:19:05 | <deejaytee> | you've added too many commas now :P In Haskell, arguments to functions do not need to be separated by commas. Only elements in lists need to be. |
| 2021-05-13 10:22:39 | <guest5> | deejaytee ahh I've got you, so no commas at the end of each line? |
| 2021-05-13 10:22:56 | × | shiraeeshi quits (~shiraeesh@109.166.58.127) (Ping timeout: 265 seconds) |
| 2021-05-13 10:23:58 | → | xft0 joins (~xft0@185.234.208.208.r.toneticgroup.pl) |
| 2021-05-13 10:24:26 | <deejaytee> | The opposite - you have a list of Cities here, each one being created by invoking the `City` function on five arguments. Currently, you're separating the five arguments from those function calls |
| 2021-05-13 10:24:47 | <deejaytee> | with commas, so to fix that those commas need to go |
| 2021-05-13 10:26:18 | <deejaytee> | If you don't mind my asking, how are you going about learning Haskell? |
| 2021-05-13 10:27:52 | × | kenran quits (~johannes@mue-88-130-62-129.dsl.tropolys.de) (Quit: leaving) |
| 2021-05-13 10:28:42 | → | ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta) |
| 2021-05-13 10:30:15 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-05-13 10:30:36 | <guest5> | university, but the resources we've been given aren't very good |
| 2021-05-13 10:30:43 | <guest5> | that's worked though, thank you very much for your help |
| 2021-05-13 10:30:52 | <deejaytee> | No worries, but before you leave... |
| 2021-05-13 10:31:11 | × | ozzymcduff quits (~textual@81-234-151-21-no94.tbcn.telia.com) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2021-05-13 10:31:19 | <guest5> | yes |
| 2021-05-13 10:31:52 | <deejaytee> | Maybe pick up Learn You a Haskell for Great Good (online free textbook) and learn Haskell from there - it seems that you're having trouble with syntax and it'll probably fill you in on that |
| 2021-05-13 10:32:31 | <guest5> | okay, thanks very much |
| 2021-05-13 10:32:35 | <guest5> | good idea probably |
| 2021-05-13 10:33:12 | → | ppmdo joins (~ppmdo@2a01:c22:7604:4200:b94d:c153:2823:9259) |
| 2021-05-13 10:33:13 | × | ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 252 seconds) |
| 2021-05-13 10:33:14 | <deejaytee> | pretty important that you get the syntax first :) The compiler's messages can get very confusing if you have syntax errors |
| 2021-05-13 10:35:15 | <guest5> | yeah definitely, thanks again |
| 2021-05-13 10:35:20 | <deejaytee> | np |
| 2021-05-13 10:35:56 | → | martin02 joins (silas@hund.fs.lmu.de) |
| 2021-05-13 10:38:03 | × | nut quits (~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Quit: WeeChat 2.8) |
| 2021-05-13 10:38:56 | → | ddellaco_ joins (~ddellacos@ool-44c73afa.dyn.optonline.net) |
| 2021-05-13 10:38:59 | → | __monty__ joins (~toonn@unaffiliated/toonn) |
| 2021-05-13 10:39:56 | → | shiraeeshi joins (~shiraeesh@109.166.58.127) |
| 2021-05-13 10:41:33 | → | a6a45081-2b83 joins (~aditya@27.58.160.217) |
| 2021-05-13 10:43:10 | × | Xnuk quits (~xnuk@45.76.202.58) (Quit: ZNC - https://znc.in) |
| 2021-05-13 10:43:28 | → | Xnuk joins (~xnuk@45.76.202.58) |
| 2021-05-13 10:43:43 | × | ddellaco_ quits (~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 265 seconds) |
| 2021-05-13 10:44:36 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Remote host closed the connection) |
| 2021-05-13 10:46:08 | × | pagnol quits (~user@014198154145.ctinets.com) (Ping timeout: 246 seconds) |
| 2021-05-13 10:49:28 | × | guest5 quits (5619784f@cpc143846-cosh20-2-0-cust78.6-1.cable.virginm.net) (Quit: Ping timeout (120 seconds)) |
| 2021-05-13 10:49:42 | → | CrazyPython joins (~crazypyth@206.214.238.6) |
| 2021-05-13 10:49:42 | → | heatsink joins (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
| 2021-05-13 10:51:10 | → | waleee-cl joins (uid373333@gateway/web/irccloud.com/x-wurzaxiwxfwflzzd) |
| 2021-05-13 10:53:34 | × | oxide quits (~lambda@unaffiliated/mclaren) (Ping timeout: 252 seconds) |
| 2021-05-13 10:54:11 | × | heatsink quits (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 260 seconds) |
| 2021-05-13 10:54:38 | → | oxide joins (~lambda@unaffiliated/mclaren) |
| 2021-05-13 10:56:27 | × | wei2912 quits (~wei2912@unaffiliated/wei2912) (Remote host closed the connection) |
| 2021-05-13 10:56:38 | → | Rudd0^ joins (~Rudd0@185.189.115.108) |
| 2021-05-13 10:59:01 | × | Rudd0 quits (~Rudd0@185.189.115.108) (Ping timeout: 260 seconds) |
| 2021-05-13 11:00:13 | × | Guest88435 quits (~textual@2603-7000-3040-0000-c4a1-9300-65ca-16c5.res6.spectrum.com) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2021-05-13 11:02:56 | × | shiraeeshi quits (~shiraeesh@109.166.58.127) (Ping timeout: 246 seconds) |
| 2021-05-13 11:04:27 | × | merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 268 seconds) |
| 2021-05-13 11:05:05 | → | gemmaro joins (~Thunderbi@240f:74:d1f0:1:1bf:3730:3a54:b192) |
| 2021-05-13 11:05:38 | × | hyiltiz quits (~quassel@unaffiliated/hyiltiz) (Ping timeout: 252 seconds) |
| 2021-05-13 11:05:50 | → | hyiltiz joins (~quassel@31.220.5.250) |
| 2021-05-13 11:05:51 | × | hyiltiz quits (~quassel@31.220.5.250) (Changing host) |
| 2021-05-13 11:05:51 | → | hyiltiz joins (~quassel@unaffiliated/hyiltiz) |
| 2021-05-13 11:06:28 | → | ddellacosta joins (~ddellacos@86.106.143.202) |
| 2021-05-13 11:06:33 | × | Alleria_ quits (~AllahuAkb@2603-7000-3040-0000-a19f-b6a7-57ef-17ab.res6.spectrum.com) (Quit: Textual IRC Client: www.textualapp.com) |
| 2021-05-13 11:10:01 | <xenon-> | windows has additional timestamp for each file, created time. does any package have this function, or do I have to resort to winapi? System.Directory only has setAccessTime and setModificationTime |
| 2021-05-13 11:11:08 | × | ddellacosta quits (~ddellacos@86.106.143.202) (Ping timeout: 252 seconds) |
| 2021-05-13 11:11:34 | → | Alleria_ joins (~AllahuAkb@2603-7000-3040-0000-d8dd-a59c-b7cb-51fa.res6.spectrum.com) |
| 2021-05-13 11:12:46 | × | Rudd0^ quits (~Rudd0@185.189.115.108) (Ping timeout: 240 seconds) |
| 2021-05-13 11:14:43 | × | a6a45081-2b83 quits (~aditya@27.58.160.217) (Quit: Konversation terminated!) |
| 2021-05-13 11:16:54 | × | nerdypepper quits (znc@152.67.162.71) (Quit: bye) |
| 2021-05-13 11:16:57 | × | olligobber quits (olligobber@gateway/vpn/privateinternetaccess/olligobber) (Remote host closed the connection) |
| 2021-05-13 11:17:48 | → | hiroaki joins (~hiroaki@2a02:908:4b18:8c40:4cef:b6bf:385e:9b4c) |
| 2021-05-13 11:19:03 | × | ppmdo quits (~ppmdo@2a01:c22:7604:4200:b94d:c153:2823:9259) (Ping timeout: 260 seconds) |
| 2021-05-13 11:19:51 | → | nerdypepper joins (znc@152.67.162.71) |
| 2021-05-13 11:23:37 | → | mrchampion joins (~mrchampio@38.18.109.23) |
| 2021-05-13 11:23:38 | × | fryguybob quits (~fryguybob@cpe-74-65-31-113.rochester.res.rr.com) (Quit: leaving) |
| 2021-05-13 11:23:52 | → | Aquazi joins (uid312403@gateway/web/irccloud.com/x-usvcyuofqnageprn) |
| 2021-05-13 11:26:43 | → | machinedgod joins (~machinedg@135-23-192-217.cpe.pppoe.ca) |
| 2021-05-13 11:26:44 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2021-05-13 11:26:47 | → | fryguybob joins (~fryguybob@cpe-74-65-31-113.rochester.res.rr.com) |
| 2021-05-13 11:31:47 | → | Lycurgus joins (~niemand@cpe-45-46-140-49.buffalo.res.rr.com) |
| 2021-05-13 11:33:23 | → | heatsink joins (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
| 2021-05-13 11:34:38 | × | malthe_ quits (~mborch@46.101.103.63) (Quit: leaving) |
| 2021-05-13 11:36:34 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:dd6b:deda:26b:d21e) |
| 2021-05-13 11:37:46 | × | hypercube quits (~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com) (Ping timeout: 276 seconds) |
| 2021-05-13 11:37:56 | × | heatsink quits (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 246 seconds) |
| 2021-05-13 11:40:02 | × | reactormonk1 quits (~reactormo@mehl.schokokeks.org) (Quit: WeeChat 2.7.1) |
| 2021-05-13 11:43:04 | → | ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta) |
| 2021-05-13 11:47:03 | × | raehik1 quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Quit: WeeChat 3.1) |
| 2021-05-13 11:47:15 | → | son0p joins (~ff@181.136.122.143) |
All times are in UTC.