Logs: freenode/#haskell
| 2020-10-27 18:06:12 | <danza> | texasmynsted, did you choose your library for shell scripting? |
| 2020-10-27 18:07:09 | × | geekosaur quits (82659a09@host154-009.vpn.uakron.edu) (Ping timeout: 245 seconds) |
| 2020-10-27 18:07:35 | → | texasmynsted joins (~texasmyns@99.96.221.112) |
| 2020-10-27 18:07:44 | × | texasmynsted quits (~texasmyns@99.96.221.112) (Remote host closed the connection) |
| 2020-10-27 18:08:52 | → | texasmynsted joins (~texasmyns@99.96.221.112) |
| 2020-10-27 18:10:32 | × | texasmynsted quits (~texasmyns@99.96.221.112) (Remote host closed the connection) |
| 2020-10-27 18:12:07 | → | texasmynsted joins (~texasmyns@99.96.221.112) |
| 2020-10-27 18:15:40 | × | gothnbass quits (~kvirc@111.red-83-37-117.dynamicip.rima-tde.net) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/) |
| 2020-10-27 18:15:41 | → | nuncanada joins (~dude@179.235.160.168) |
| 2020-10-27 18:16:00 | → | thir joins (~thir@p200300f27f0b7e004c18ab60065ea01b.dip0.t-ipconnect.de) |
| 2020-10-27 18:17:05 | → | phaul joins (~phaul@ruby/staff/phaul) |
| 2020-10-27 18:18:21 | × | danza quits (~francesco@151.53.87.185) (Quit: Leaving) |
| 2020-10-27 18:18:49 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2020-10-27 18:19:55 | → | valli1 joins (~valli@185.244.214.217) |
| 2020-10-27 18:20:21 | × | concept2 quits (~concept2@unaffiliated/tubo) (Read error: Connection reset by peer) |
| 2020-10-27 18:20:35 | → | concept2 joins (~concept2@unaffiliated/tubo) |
| 2020-10-27 18:20:36 | × | emmanuel_erc quits (~user@2604:2000:1382:ce03:6974:40c4:284f:7839) (Remote host closed the connection) |
| 2020-10-27 18:21:04 | × | bartemius quits (~bartemius@109-252-20-20.nat.spd-mgts.ru) (Remote host closed the connection) |
| 2020-10-27 18:21:25 | → | Chi1thangoo joins (~Chi1thang@87.112.60.168) |
| 2020-10-27 18:22:09 | × | jneira quits (501e64fa@gateway/web/cgi-irc/kiwiirc.com/ip.80.30.100.250) (Quit: Connection closed) |
| 2020-10-27 18:23:32 | → | av3games joins (6cfab89c@108-250-184-156.lightspeed.gnvlsc.sbcglobal.net) |
| 2020-10-27 18:23:36 | <av3games> | hello |
| 2020-10-27 18:23:38 | <av3games> | i need |
| 2020-10-27 18:23:41 | <av3games> | help |
| 2020-10-27 18:23:58 | <av3games> | i am new to haskell and idk what this is |
| 2020-10-27 18:24:16 | × | texasmynsted quits (~texasmyns@99.96.221.112) (Remote host closed the connection) |
| 2020-10-27 18:24:22 | <av3games> | <interactive>:3:1: error: * Variable not in scope: main * Perhaps you meant `min' (imported from Prelude) |
| 2020-10-27 18:24:51 | × | Amras quits (~Amras@unaffiliated/amras0000) (Remote host closed the connection) |
| 2020-10-27 18:24:57 | <av3games> | here's my code:import Data.Listimport System.IO-- Int -2^63 - 2^63maxInt = maxBound :: Int |
| 2020-10-27 18:25:01 | <av3games> | import Data.Listimport System.IO-- Int -2^63 - 2^63maxInt = maxBound :: Int |
| 2020-10-27 18:25:05 | × | geowiesnot quits (~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 240 seconds) |
| 2020-10-27 18:25:10 | <av3games> | ... |
| 2020-10-27 18:25:19 | <ghoulguy> | av3games: What's your file named? |
| 2020-10-27 18:25:29 | → | livvy joins (~livvy@gateway/tor-sasl/livvy) |
| 2020-10-27 18:25:31 | <av3games> | main.hs |
| 2020-10-27 18:25:36 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Remote host closed the connection) |
| 2020-10-27 18:25:38 | <av3games> | i am stupid |
| 2020-10-27 18:25:54 | → | texasmynsted joins (~texasmyns@99.96.221.112) |
| 2020-10-27 18:25:56 | <av3games> | i am new to haskell |
| 2020-10-27 18:26:15 | <ghoulguy> | change the name to something like: Fun.hs |
| 2020-10-27 18:26:23 | <ghoulguy> | and then add this to the top of your file: module Fun where |
| 2020-10-27 18:26:30 | <av3games> | ok |
| 2020-10-27 18:26:32 | <av3games> | thx |
| 2020-10-27 18:26:35 | → | geekosaur joins (82659a09@host154-009.vpn.uakron.edu) |
| 2020-10-27 18:26:54 | <ghoulguy> | av3games: By default, if you don't specify a 'module' line, you get this by default: module Main (main) where |
| 2020-10-27 18:27:03 | <ghoulguy> | which assumes you've defined a 'main' to export |
| 2020-10-27 18:27:08 | <av3games> | ok |
| 2020-10-27 18:27:32 | <av3games> | thanks ghoulguy |
| 2020-10-27 18:27:42 | → | Amras joins (~Amras@unaffiliated/amras0000) |
| 2020-10-27 18:29:48 | × | nbloomf quits (~nbloomf@2600:1700:ad14:3020:d1e5:1a77:fd52:7b88) (Quit: Textual IRC Client: www.textualapp.com) |
| 2020-10-27 18:30:57 | × | cfricke quits (~cfricke@unaffiliated/cfricke) (Quit: WeeChat 2.9) |
| 2020-10-27 18:31:33 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:79dc:6e3d:1f6f:5c9) |
| 2020-10-27 18:31:38 | → | Tops2 joins (~Tobias@dyndsl-095-033-025-205.ewe-ip-backbone.de) |
| 2020-10-27 18:31:47 | × | texasmynsted quits (~texasmyns@99.96.221.112) (Remote host closed the connection) |
| 2020-10-27 18:32:17 | × | hyiltiz quits (~quassel@unaffiliated/hyiltiz) (Ping timeout: 260 seconds) |
| 2020-10-27 18:32:59 | × | av3games quits (6cfab89c@108-250-184-156.lightspeed.gnvlsc.sbcglobal.net) (Remote host closed the connection) |
| 2020-10-27 18:35:21 | → | cole-h joins (~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) |
| 2020-10-27 18:35:22 | × | _vaibhavingale_1 quits (~Adium@203.188.228.9) (Ping timeout: 256 seconds) |
| 2020-10-27 18:35:37 | × | justanotheruser quits (~justanoth@unaffiliated/justanotheruser) (Ping timeout: 246 seconds) |
| 2020-10-27 18:35:55 | → | Stanley00 joins (~stanley00@unaffiliated/stanley00) |
| 2020-10-27 18:37:05 | × | idhugo quits (~idhugo@185.45.22.133) (Ping timeout: 240 seconds) |
| 2020-10-27 18:37:15 | × | Lord_of_Life quits (~Lord@46.217.223.11) (Changing host) |
| 2020-10-27 18:37:15 | → | Lord_of_Life joins (~Lord@unaffiliated/lord-of-life/x-0885362) |
| 2020-10-27 18:37:48 | × | jakob_ quits (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:37:58 | → | jakob_ joins (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) |
| 2020-10-27 18:38:35 | × | jakob_ quits (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:38:44 | → | jakob_ joins (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) |
| 2020-10-27 18:39:04 | × | heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 2020-10-27 18:39:23 | × | jakob_ quits (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:39:27 | × | akegalj quits (~akegalj@93-142-98-67.adsl.net.t-com.hr) (Quit: leaving) |
| 2020-10-27 18:39:32 | → | jakob_ joins (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) |
| 2020-10-27 18:40:10 | × | jakob_ quits (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:40:19 | → | jakob_ joins (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) |
| 2020-10-27 18:40:25 | × | Stanley00 quits (~stanley00@unaffiliated/stanley00) (Ping timeout: 240 seconds) |
| 2020-10-27 18:40:27 | → | nschoe joins (~quassel@2a01:e0a:3c4:c7b0:496b:6bb1:2a12:b6fe) |
| 2020-10-27 18:40:58 | × | jakob_ quits (~jakob@p200300f49f1622005d925613eec2f60c.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:41:36 | → | fendor joins (~fendor@91.141.2.36.wireless.dyn.drei.com) |
| 2020-10-27 18:41:37 | dmwit | is now known as dmwitch |
| 2020-10-27 18:42:44 | → | tromp joins (~tromp@dhcp-077-249-230-040.chello.nl) |
| 2020-10-27 18:42:51 | → | hyiltiz joins (~quassel@82.118.227.47) |
| 2020-10-27 18:42:51 | × | hyiltiz quits (~quassel@82.118.227.47) (Changing host) |
| 2020-10-27 18:42:51 | → | hyiltiz joins (~quassel@unaffiliated/hyiltiz) |
| 2020-10-27 18:44:51 | → | cgfbee joins (~bot@oc1.itim-cj.ro) |
| 2020-10-27 18:47:42 | × | thir quits (~thir@p200300f27f0b7e004c18ab60065ea01b.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:48:45 | × | justsomeguy quits (~justsomeg@unaffiliated/--/x-3805311) (Ping timeout: 240 seconds) |
| 2020-10-27 18:49:09 | → | justsomeguy joins (~justsomeg@unaffiliated/--/x-3805311) |
| 2020-10-27 18:52:14 | × | raichoo quits (~raichoo@213.240.178.58) (Quit: Lost terminal) |
| 2020-10-27 18:53:31 | × | clockboi quits (~clockboi@p200300ef8f0a9b00f86fc02b1cd4ca0a.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-27 18:54:13 | → | falsifian joins (~falsifian@cpef81d0f9cb2f3-cmf81d0f9cb2f0.cpe.net.fido.ca) |
| 2020-10-27 18:56:10 | → | wroathe_ joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-10-27 18:56:45 | × | wroathe quits (~wroathe@c-73-24-27-54.hsd1.mn.comcast.net) (Ping timeout: 240 seconds) |
| 2020-10-27 18:57:15 | → | chaosmasttter joins (~chaosmast@p200300c4a73c4601bdd32dc7d6289d04.dip0.t-ipconnect.de) |
| 2020-10-27 19:00:28 | × | dbmikus quits (~dbmikus@cpe-76-167-86-219.natsow.res.rr.com) (Ping timeout: 246 seconds) |
| 2020-10-27 19:01:36 | → | dcoutts_ joins (~duncan@33.14.75.194.dyn.plus.net) |
| 2020-10-27 19:01:52 | → | GyroW_ joins (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) |
| 2020-10-27 19:01:52 | × | GyroW_ quits (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) (Changing host) |
| 2020-10-27 19:01:52 | → | GyroW_ joins (~GyroW@unaffiliated/gyrow) |
| 2020-10-27 19:02:25 | × | justsomeguy quits (~justsomeg@unaffiliated/--/x-3805311) (Ping timeout: 240 seconds) |
| 2020-10-27 19:02:40 | × | GyroW quits (~GyroW@unaffiliated/gyrow) (Ping timeout: 258 seconds) |
| 2020-10-27 19:03:09 | × | Tops2 quits (~Tobias@dyndsl-095-033-025-205.ewe-ip-backbone.de) (Read error: Connection reset by peer) |
All times are in UTC.