[00:05:11] * LACampbell [LACampbell!~lewis@121-75-239-167.dyn.vf.net.nz] has joined the channel. [00:06:58] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has joined the channel. [00:55:42] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has quit (Quit: WeeChat 1.5). [00:56:06] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has joined the channel. [01:01:10] * bb010g [bb010g!uid21050@gateway/web/irccloud.com/x-teltegjyuyygqfvx] has quit (Quit: Connection closed for inactivity). [01:03:35] * LACampbell [LACampbell!~lewis@121-75-239-167.dyn.vf.net.nz] has quit (Ping timeout: 264 seconds). [01:19:50] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has quit (Quit: WeeChat 1.5). [01:20:13] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has joined the channel. [01:48:07] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has quit (Quit: WeeChat 1.5). [01:48:28] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has joined the channel. [02:11:30] * LACampbell [LACampbell!~lewis@118.149.222.6] has joined the channel. [02:59:42] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has quit (Quit: Leaving.). [04:00:45] * kssreeram [kssreeram!~kssreeram@223.185.180.115] has joined the channel. [04:07:08] hey all [04:07:29] i wrote an email to the factor-talk list about changes to factor i've been working on [04:39:08] * kssreeram [kssreeram!~kssreeram@223.185.180.115] has quit (Read error: Connection reset by peer). [04:49:30] * kssreeram [kssreeram!~kssreeram@223.185.180.115] has joined the channel. [05:11:23] * rgrinberg [rgrinberg!~rgrinberg@172-97-147-148.cpe.distributel.net] has quit (Ping timeout: 264 seconds). [05:13:14] * kssreeram [kssreeram!~kssreeram@223.185.180.115] has quit (Read error: Connection reset by peer). [06:06:45] * kssreeram [kssreeram!~kssreeram@223.231.158.67] has joined the channel. [06:28:43] * kssreeram [kssreeram!~kssreeram@223.231.158.67] has quit (Read error: Connection reset by peer). [07:52:00] * kssreeram [kssreeram!~kssreeram@106.206.116.119] has joined the channel. [08:15:01] * kssreeram [kssreeram!~kssreeram@106.206.116.119] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [08:55:51] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has joined the channel. [09:37:50] * LACampbell [LACampbell!~lewis@118.149.222.6] has quit (Ping timeout: 240 seconds). [11:42:46] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has joined the channel. [11:49:22] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [11:56:59] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has joined the channel. [12:17:24] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [13:35:01] Happy fourth, Erg! [15:10:58] * jlewis [jlewis!~jlewis@unaffiliated/jordanlewis] has quit (Ping timeout: 260 seconds). [16:26:41] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has joined the channel. [16:36:50] hmm, I didn't get the memo [16:37:06] I saw you had a boat load of commits though [19:02:55] happy fourth, bmp, tgunr, all! [19:03:08] tgunr: did the message not make it through the mailing list? [19:03:24] i see it here: https://sourceforge.net/p/factor/mailman/factor-talk/ [19:03:41] I got it, lots o work there sir Doug [19:04:11] what do you guys think about reversing unit-test? [ 1 2 + ] { 3 } unit-test [19:04:44] my workflow is write some code, then move the cursor to the beginning of line and add the unit-test answer [19:06:50] I'm kind of ambivalent about it, [ code ] { result } is fine with me [19:08:05] it would also help for $example, you could copy/paste between the sections [19:08:37] although { result } [ code ] unit-test seems more in line with current calling convention of [ quote ] method [19:08:49] actually, if we had NAMED-UNIT-TEST: then you could reference the test from the docs without duplication! [19:09:16] that sounds nice [19:11:53] you're right, most combinators take the quot as the last parameter [19:12:59] I would like to see the ! go away as comment and be able to use ! as in Forth [19:13:31] value var ! [19:14:43] erg: For consistency, I'd prefer how it is now, but I confess to always being confused what the hell's going on when I leave Factor for too long. [19:15:51] i wanted to make them all top-level if possible. it's hard because they aren't "one thing" in the lexer right now [19:16:01] UNIT-TEST: [ 1 2 + ] { 3 } [19:16:18] NAMED-UNIT-TEST: one-plus-two [ 1 2 + ] { 3 } [19:18:21] also, imagine writing them inline with your code, but then the tool moves them to the tests file :p [19:19:59] I like the named unit test but it would see to that it should like other methods { result } TEST: one-plus-two [ code ] ; [19:20:21] s/see/seem to me/ [19:21:37] to me (old school Forther) when I see : I think new word in the vocab [19:21:47] i want it to be a top-level thing [19:22:03] according to the rules for top-level things in the new parser [19:22:27] I should look at your stuff more closely before commenting :) [19:22:33] FOO: arg1 arg2 optional semi ; [19:22:51] then those can nest inside BAR< A: ; B: ; BAR> [19:25:37] gotta run for now BBL and will pull your branch [19:31:30] * Carisius [Carisius!~Carisius@cm-188-171-4-60.telecable.es] has joined the channel. [19:32:58] tgunr: probably best to check out my branch then merge your changes, if any [19:33:26] maybe keep a tgunr repo with all your code. that's what john and i do with re-factor and code-factor [19:59:25] * Carisius [Carisius!~Carisius@cm-188-171-4-60.telecable.es] has quit (Remote host closed the connection). [21:02:01] * tgunr [tgunr!~davec@cpe-66-91-34-168.hawaii.res.rr.com] has quit (Ping timeout: 244 seconds). [21:26:59] * mykespb [mykespb!~myke@213.141.133.133] has joined the channel. [21:31:18] * tgunr [tgunr!~davec@cpe-66-91-34-168.hawaii.res.rr.com] has joined the channel. [21:31:37] erg: pulled your branch but it doesn't compile [21:31:48] http://polymicro.clarify-it.com/d/z7ehhm [21:40:03] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has quit (Quit: Leaving.). [21:41:04] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has joined the channel. [21:42:13] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has quit (Quit: Leaving). [21:42:36] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has joined the channel. [22:16:39] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has quit (Ping timeout: 250 seconds). [22:21:34] * LACampbell [LACampbell!~lewis@121-75-239-167.dyn.vf.net.nz] has joined the channel. [22:21:59] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has joined the channel. [22:24:41] * fuzzyhorns [fuzzyhorns!~fuzzyhorn@c-73-38-57-191.hsd1.ma.comcast.net] has quit (Quit: Leaving.). [22:36:34] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has quit (Ping timeout: 250 seconds). [22:41:29] * bjz [bjz!~bjz@104.222.140.47] has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…). [22:44:50] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has joined the channel. [23:04:28] * bjz [bjz!~bjz@pa49-183-144-127.pa.vic.optusnet.com.au] has joined the channel. [23:10:44] * kssreeram [kssreeram!~kssreeram@49.207.188.151] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [23:12:54] * bjz [bjz!~bjz@pa49-183-144-127.pa.vic.optusnet.com.au] has quit (Ping timeout: 252 seconds).