emmanuelux has quit [Remote host closed the connection]
lolcathost has quit [Ping timeout: 252 seconds]
eikke has quit [Ping timeout: 248 seconds]
lolcathost has joined #ocaml
fayden has quit [Quit: Bye]
wmeyer`` has joined #ocaml
wmeyer` has quit [Read error: Operation timed out]
everyonemines has quit [Quit: Leaving.]
leoncamel has quit [Ping timeout: 250 seconds]
lolcathost has quit [Ping timeout: 255 seconds]
lolcathost has joined #ocaml
eikke has joined #ocaml
madroach has quit [Ping timeout: 244 seconds]
madroach has joined #ocaml
lolcathost has quit [Quit: leaving]
leoncamel has joined #ocaml
lolcathost has joined #ocaml
BobDole has joined #ocaml
mattrepl has quit [Quit: mattrepl]
<BobDole>
I'm making a lexer. So i have a string like "something<begin>abc#z#def<end>something". I want tokens for str("abc"), var(z) and str("def"), but basically this rule should only parse like that between <begin> and <end>. So what I did was I have a separate rule for that, and to start the rule, I have "<begin> { othersection lexbuf }" ... i'm not sure exactly what syntax to use in othersection
<BobDole>
so i can have this section generate multiple tokens though
weie has joined #ocaml
eikke has quit [Ping timeout: 260 seconds]
fayden has joined #ocaml
lolcathost has quit [Quit: Testing, testing...]
lolcathost has joined #ocaml
lolcathost has quit [Quit: leaving]
lolcathost has joined #ocaml
troydm has quit [Ping timeout: 256 seconds]
Yoric has joined #ocaml
fayden has quit [Quit: Bye]
cdidd has quit [Ping timeout: 264 seconds]
weie_ has joined #ocaml
weie has quit [Ping timeout: 265 seconds]
Yoric has quit [Ping timeout: 265 seconds]
Ptival has quit [Ping timeout: 252 seconds]
Ptival has joined #ocaml
larhat has joined #ocaml
answer_42 has joined #ocaml
djcoin has joined #ocaml
mye has joined #ocaml
Cyanure has joined #ocaml
jewel has joined #ocaml
BiDOrD_ has quit [Ping timeout: 272 seconds]
mika1 has joined #ocaml
ontologiae has joined #ocaml
lolcathost has quit [Ping timeout: 260 seconds]
ontologiae has quit [Ping timeout: 265 seconds]
cago has joined #ocaml
leoncamel has quit [Ping timeout: 264 seconds]
AltGr has joined #ocaml
lolcathost has joined #ocaml
hkBst has joined #ocaml
Cyanure has quit [Quit: Quitte]
lolcathost has quit [Ping timeout: 248 seconds]
mye has quit [Quit: mye]
leoncamel has joined #ocaml
BobDole has quit [Quit: -1]
asmanur has joined #ocaml
asmanur_ has quit [Ping timeout: 276 seconds]
Cyanure has joined #ocaml
leoncamel has quit [Ping timeout: 265 seconds]
leoncamel has joined #ocaml
ontologiae has joined #ocaml
mika1 has quit [Quit: Leaving.]
groleo has joined #ocaml
weie has joined #ocaml
weie_ has quit [Ping timeout: 264 seconds]
eikke has joined #ocaml
ikaros has joined #ocaml
mika1 has joined #ocaml
pango is now known as pangoafk
lopex has quit []
lopex has joined #ocaml
beckerb has joined #ocaml
fusillia has quit [Ping timeout: 245 seconds]
mcclurmc has quit [Quit: Leaving.]
fusillia has joined #ocaml
mye has joined #ocaml
mika1 has quit [Quit: Leaving.]
mye has quit [Read error: Connection reset by peer]
mye has joined #ocaml
Kakadu has joined #ocaml
rodarima has joined #ocaml
BiDOrD has joined #ocaml
lolcathost has joined #ocaml
fraggle_laptop has joined #ocaml
rodarima has quit [Quit: Saliendo]
ftrvxmtrx has joined #ocaml
Neros has quit [Ping timeout: 246 seconds]
mika1 has joined #ocaml
mcclurmc has joined #ocaml
mika1 has quit [Client Quit]
larhat has quit [Quit: Leaving.]
Neros has joined #ocaml
larhat has joined #ocaml
fraggle_laptop has quit [Ping timeout: 252 seconds]
watermind has joined #ocaml
ontologiae has quit [Ping timeout: 264 seconds]
watermind has quit [Quit: Konversation terminated!]
watermind has joined #ocaml
Neros has quit [Ping timeout: 272 seconds]
mika1 has joined #ocaml
watermind has quit [Quit: Konversation terminated!]
lolcathost has quit [Ping timeout: 244 seconds]
lolcathost has joined #ocaml
thomasga has joined #ocaml
watermind has joined #ocaml
merijn has joined #ocaml
<merijn>
Is there anyway to stop the ocaml interpreter from abbreviating the results that it prints?
merijn has quit [Read error: Connection reset by peer]
merijn has joined #ocaml
ocp has joined #ocaml
hkBst has quit [Remote host closed the connection]
hkBst has joined #ocaml
hkBst has quit [Changing host]
hkBst has joined #ocaml
cdidd has joined #ocaml
fraggle_laptop has joined #ocaml
hkBst_ has joined #ocaml
hkBst has quit [Ping timeout: 264 seconds]
Qrntz_ has joined #ocaml
Qrntz_ has quit [Client Quit]
hkBst_ has quit [Ping timeout: 255 seconds]
hkBst_ has joined #ocaml
hkBst_ has quit [Remote host closed the connection]
lolcathost has quit [Quit: leaving]
lolcathost has joined #ocaml
Yoric1 has joined #ocaml
thomasga has quit [Quit: Leaving.]
chambart has joined #ocaml
Yoric1 has quit [Ping timeout: 250 seconds]
myx has quit [Ping timeout: 248 seconds]
_andre_ has joined #ocaml
_andre_ has quit [Client Quit]
andre___ has joined #ocaml
_andre has quit [Ping timeout: 265 seconds]
smondet has joined #ocaml
thomasga has joined #ocaml
cago has left #ocaml []
fayden has joined #ocaml
ocp has quit [Quit: Leaving.]
lihaitao has joined #ocaml
<matthewt>
hello, i'm trying to write a function that takes a list and splits into two lists according to whether the elements satisfy a certain predicate. what i've done works correctly, but does anyone know how i can rewrite it to not require empty lists as parameters? http://pastie.org/5543170
jamii has joined #ocaml
<Kakadu>
matthewt: let partition2 p xs = partition p xs [] [] ?
<adrien_oww>
and that's a pretty common idiom
<matthewt>
i see, thank you very much
<matthewt>
i expected the answer to involve nested functions, and i'm quite happy that it doesn't
merijn has left #ocaml []
<matthewt>
is there anyone here from nancy, fr by any chance
lihaitao has quit [Ping timeout: 246 seconds]
lihaitao has joined #ocaml
mika1 has quit [Quit: Leaving.]
Neros has joined #ocaml
mika1 has joined #ocaml
mika1 has quit [Client Quit]
Kakadu has quit []
fusillia has quit [Ping timeout: 272 seconds]
Cyanure has quit [Remote host closed the connection]
tac has joined #ocaml
tac_ has joined #ocaml
tac has quit [Ping timeout: 245 seconds]
tac_ is now known as tac
andre___ has quit [Ping timeout: 264 seconds]
Kakadu has joined #ocaml
_andre has joined #ocaml
tane has joined #ocaml
lihaitao has quit [Ping timeout: 246 seconds]
gnuvince has quit [Quit: Remember when men were men and regular expressions recognized regular languages?]
djcoin has quit [Quit: WeeChat 0.3.9.2]
beckerb has quit [Quit: Konversation terminated!]
sad0ur has joined #ocaml
iZsh has quit [Quit: Coyote finally caught me]
iZsh has joined #ocaml
groleo has quit [Quit: Leaving.]
gnuvince has joined #ocaml
AltGr has quit [Quit: Konversation terminated!]
thomasga has quit [Quit: Leaving.]
xavierm02 has joined #ocaml
larhat has quit [Ping timeout: 264 seconds]
mcclurmc is now known as mcclurmc_away
ftrvxmtrx has quit [Quit: Leaving]
sad0ur has quit [Ping timeout: 246 seconds]
myx has joined #ocaml
eni has joined #ocaml
Submarine has joined #ocaml
Submarine has quit [Changing host]
Submarine has joined #ocaml
Yoric has joined #ocaml
smondet has quit [Ping timeout: 255 seconds]
tani has joined #ocaml
tane has quit [Ping timeout: 272 seconds]
emmanuelux has joined #ocaml
_andre has quit [Quit: leaving]
Naliander has joined #ocaml
sad0ur has joined #ocaml
ontologiae has quit [Ping timeout: 264 seconds]
<Naliander>
Good evening every one ! I have a problem with the software Ocaml, when i download it, my antivirus tells me that the installer is full of trojan, is this normal? If it is, why that? And how can i solve it? Thanks guy =)
<adrien>
had the same issue
<adrien>
you should have a way in your AV software to report false-positives
<Kakadu>
antivirus? what is that?
<Kakadu>
:)
Neros has quit [Ping timeout: 255 seconds]
<Naliander>
Okey, so it's really a misunderstanding of the AV, great i will do that !
chambart has quit [Ping timeout: 255 seconds]
<adrien>
last time I saw that that was with avast and it flagged all the bytecode executables as virus I think
<Naliander>
yes i'm with avast too, it did the same !
<Naliander>
And Kakadu, AV is neccesary with window, sadly x)
<Kakadu>
Naliander: What window?
<Kakadu>
My KDE also has many windows but I don't need any AV
<Naliander>
Ahah, yeah I know, i know, but my school use windows so i must use it if i want to study confortable ! x)
<wmeyer``>
Naliander: I think it's pretty normal that AV software reports OCaml installer as being infected - that's my advise based on other reports.
<wmeyer``>
Naliander: If you are unsure Jonathan Protzenko is the person to ask - and I am sure he hasn't included anything harmful.
<Naliander>
Okey thanks for the confirmation wmeyer =) I'm just a little be scared when i saw this red message from avast xD
tani has quit [Quit: Verlassend]
<wmeyer``>
Naliander: nope, nothing to worry. People work hard to ensure there is nothing to be worried.
pangoafk is now known as pango
Anarchos has joined #ocaml
<wmeyer``>
Naliander: you welcome, and I hope it solves your problems.
<wmeyer``>
s/you/you are
<Naliander>
Thanksfully ! That's great ! Thanks to all of you guys =D
Snark has quit [Quit: Quitte]
wmeyer``` has joined #ocaml
wmeyer`` has quit [Ping timeout: 272 seconds]
wmeyer``` is now known as wmeyer
Naliander has quit [Quit: Page closed]
wmeyer` has joined #ocaml
wmeyer has quit [Read error: Connection reset by peer]
jewel has quit [Ping timeout: 252 seconds]
smondet has joined #ocaml
Neros has joined #ocaml
Neros has quit [Ping timeout: 256 seconds]
mye has quit [Quit: mye]
answer_42 has quit [Quit: WeeChat 0.3.9.2]
Neros has joined #ocaml
mrpantou1le is now known as MrSlipper
Neros has quit [Read error: Connection reset by peer]
gbluma has joined #ocaml
Neros has joined #ocaml
weie has quit [Quit: Leaving...]
gbluma has left #ocaml []
Kakadu has quit []
eni has quit [Quit: Leaving]
chambart has joined #ocaml
Yoric has quit [Ping timeout: 272 seconds]
gnuvince has quit [Ping timeout: 255 seconds]
Guest18906 has quit [Ping timeout: 250 seconds]
micro_ has joined #ocaml
micro_ is now known as Guest33485
Submarine has quit [Remote host closed the connection]
Anarchos has quit [Quit: Vision[0.9.7-H-090423]: i've been blurred!]
Xizor has joined #ocaml
X1z0r has joined #ocaml
smondet has quit [Ping timeout: 246 seconds]
gnuvince has joined #ocaml
myx has quit [Ping timeout: 246 seconds]
xavierm02 has quit [Quit: Leaving]
myx has joined #ocaml
myx_ has joined #ocaml
myx has quit [Ping timeout: 246 seconds]
chambart has quit [Ping timeout: 246 seconds]
ikaros has quit [Quit: Ex-Chat]
TDJACR has joined #ocaml
tac_ has joined #ocaml
tac has quit [Ping timeout: 245 seconds]
<Ptival>
yeah, Jonathan knows about that issue
tac_ has quit [Ping timeout: 245 seconds]
Yoric has joined #ocaml
ikaros has joined #ocaml
Yoric has quit [Ping timeout: 265 seconds]
emmanuelux has quit [Remote host closed the connection]