| srjames | I've found some, but i don't know if some are better than others.. I have very very basic perl knowledge, and was looking for a really thourough tutorial, something with projects and the like that i could work on to build upon my knowledge. [#perl] Woops. |
| sili | srjames: perlbot: tutorial |
| godzirra | cfedde: thanks, I appreciate it. |
| cfedde | I get exactly what you get. hum.... |
| godzirra | darnit.\ am I calling it wrong somehow? |
| cfedde | yrlnry: comment on godzirra's output? http://sial.org/pbot/24356 |
| yrlnry | comment: looks like a bug. Send it to ned Konz; I no longer maintain that module. |
| cfedde | yrlnry: thanks! |
| Frakkle | Um. |
| godzirra | cfedde: and if i use the code on http://www.perlmonks.org/?node_id=153980 it returns line 1 < ARRAY(blah) stuff. Wait... |
| Frakkle | No? |
| godzirra | the -example- from the perldoc is bugged? :/ |
| yrlnry | comment 2: Try it with a pre-ned-konz version and see if you get the result you like. |
| confound | yrlnry: did you see my email about CTY? |
| yrlnry | confound: Yes. Did you want a response? |
| confound | no, I just didn't know if you had seen it because of your vacation mail. |
| yrlnry | I did, thanks. godzirra: try http://perl.plover.com/diff/Algorithm-Diff-0.57.tar.gz and see i fyou get the same result. |
| amnesiac | yrlnry! |
| godzirra | yrlnry: same ersults. *results. well crap. I guess i'll have to figure out another way to get the diff between the two arrays. its odd that the example in the perldoc doesn't actually work though. |
| yrlnry | That is really weird. I don't know what's going on. (I tried it too.) Oh, I see what you did wrong. Each of your input lists has only one element. |
| godzirra | wait.. huh? my input list has more than one element... |
| yrlnry | my @mo_list = [qw/a b c e h j l m n p/]; should be my @mo_list = qw/a b c e h j l m n p/; |
| godzirra | oh crap. hey look at that. it works. Thanks you two. |