adrien changed the topic of #ocaml to: Discussions about the OCaml programming language | http://www.ocaml.org | OCaml 4.07.1 release notes: https://caml.inria.fr/pub/distrib/ocaml-4.07/notes/Changes | Try OCaml in your browser: http://try.ocamlpro.com | Public channel logs at http://irclog.whitequark.org/ocaml | Due to ongoing spam, you must register your nickname to talk on the channel
tane has quit [Quit: Leaving]
NingaLeaf has joined #ocaml
NingaLeaf has quit [Client Quit]
NingaLeaf has joined #ocaml
NingaLeaf has quit [Client Quit]
NingaLeaf has joined #ocaml
Haudegen has quit [Remote host closed the connection]
pierpal has quit [Ping timeout: 246 seconds]
rnmhdn has joined #ocaml
mfp has quit [Ping timeout: 246 seconds]
sonologico has quit [Ping timeout: 268 seconds]
sonologico has joined #ocaml
jao has quit [Ping timeout: 245 seconds]
sonologico has quit [Ping timeout: 258 seconds]
tormen_ has joined #ocaml
tormen has quit [Ping timeout: 240 seconds]
sonologico has joined #ocaml
NingaLeaf has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gravicappa has joined #ocaml
notzmv has joined #ocaml
sonologico has quit [Remote host closed the connection]
pierpal has joined #ocaml
pierpal has quit [Read error: Connection reset by peer]
_whitelogger_ has joined #ocaml
_whitelogger has quit [Ping timeout: 250 seconds]
_whitelogger has joined #ocaml
themsay has quit [Read error: Connection reset by peer]
themsay has joined #ocaml
themsay has quit [Read error: Connection reset by peer]
themsay has joined #ocaml
themsay has quit [Read error: Connection reset by peer]
themsay has joined #ocaml
themsay has quit [Remote host closed the connection]
themsay has joined #ocaml
rnmhdn has quit [Read error: Connection reset by peer]
iovec has quit [Quit: Connection closed for inactivity]
jaar has joined #ocaml
themsay has quit [Ping timeout: 246 seconds]
johnelse has joined #ocaml
johnelse has quit [Ping timeout: 258 seconds]
johnelse has joined #ocaml
johnelse has quit [Read error: Connection reset by peer]
zolk3ri has joined #ocaml
johnelse has joined #ocaml
zlsyx has joined #ocaml
bartholin has joined #ocaml
johnelse_ has joined #ocaml
johnelse has quit [Read error: Connection reset by peer]
johnelse_ has quit [Read error: Connection reset by peer]
Serpent7776 has joined #ocaml
johnelse has joined #ocaml
kalio has quit [Ping timeout: 250 seconds]
mfp has joined #ocaml
kalio has joined #ocaml
jao has joined #ocaml
<reynir> Is there a Nocrypto.Hash.S.feed for HMACs?
xenon- has joined #ocaml
_whitelogger has joined #ocaml
pierpal has joined #ocaml
pierpal has quit [Ping timeout: 246 seconds]
ggole has joined #ocaml
jao has quit [Ping timeout: 250 seconds]
Haudegen has joined #ocaml
xenon- has quit [Quit: quit]
rnmhdn has joined #ocaml
pierpal has joined #ocaml
marvin2 has quit [Ping timeout: 246 seconds]
zlsyx has quit [Quit: Leaving...]
pierpal has quit [Client Quit]
pierpal has joined #ocaml
demonimin has quit [Quit: bye]
recj has quit [Quit: Lost terminal]
iovec has joined #ocaml
initiumdoeslinux has joined #ocaml
pierpal has quit [Read error: Connection reset by peer]
initiumdoeslinux has quit [Ping timeout: 250 seconds]
initiumdoeslinux has joined #ocaml
pierpal has joined #ocaml
initiumdoeslinux has quit [Ping timeout: 246 seconds]
sagotch has joined #ocaml
jaar has quit [Ping timeout: 252 seconds]
marvin2 has joined #ocaml
aggelos_ has quit [Ping timeout: 268 seconds]
jaar has joined #ocaml
jaar has quit [Remote host closed the connection]
FreeBirdLjj has joined #ocaml
initiumdoeslinux has joined #ocaml
NingaLeaf has joined #ocaml
initiumdoeslinux has quit [Ping timeout: 244 seconds]
pierpal has quit [Quit: Poof]
pierpal has joined #ocaml
jao has joined #ocaml
mildtaste has quit [Remote host closed the connection]
sagotch has quit [Ping timeout: 250 seconds]
sagotch has joined #ocaml
notzmv has quit [Quit: WeeChat 2.3]
pierpal has quit [Quit: Poof]
pierpal has joined #ocaml
technomancy has left #ocaml ["ERC (IRC client for Emacs 24.5.1)"]
jnavila has joined #ocaml
zolk3ri has quit [Quit: Lost terminal]
takanuva has joined #ocaml
takanuva has quit [Client Quit]
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #ocaml
NingaLeaf has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
FreeBirdLjj has quit [Ping timeout: 250 seconds]
gareppa has joined #ocaml
gareppa has quit [Remote host closed the connection]
kakadu has joined #ocaml
FreeBirdLjj has joined #ocaml
FreeBirdLjj has quit [Ping timeout: 240 seconds]
marvin2 has quit [Ping timeout: 258 seconds]
sagotch has quit [Quit: Leaving.]
FreeBirdLjj has joined #ocaml
emias has quit [Ping timeout: 272 seconds]
tane has joined #ocaml
sagax has quit [Ping timeout: 244 seconds]
NingaLeaf has joined #ocaml
emias has joined #ocaml
sagax has joined #ocaml
sonologico has joined #ocaml
rwmjones has quit [Quit: ZNC - 1.6.0 - http://znc.in]
rwmjones has joined #ocaml
gravicappa has quit [Ping timeout: 268 seconds]
<rnmhdn> any idea what is wrong with this code:
<rnmhdn> let rec hazfFrom i lst n = function
<rnmhdn> | [] -> []
<rnmhdn> | h::t -> if i = n then (hazfFrom 1 t n) else h::(hazfFrom (i+1) t n)
NingaLeaf has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
NingaLeaf has joined #ocaml
NingaLeaf has quit [Client Quit]
<ggole> rnmhdn: probably replace 'function' with 'match lst with'
<rnmhdn> what is the difference?
<ggole> 'function' produces a function that takes one unnamed argument and matches against it immediately
<ggole> That would make this a four argument function, which doesn't seem like what you were going for.
<rnmhdn> can I trim a list from it's kth element
<rnmhdn> e.g. trim [1;2;3;4] 2 = [3;4]
recj has joined #ocaml
<rnmhdn> ggole: thank you for the func
ggole has quit [Quit: ggole]
FreeBirdLjj has quit [Remote host closed the connection]
_twx_ has joined #ocaml
_twx_ has quit [Remote host closed the connection]
Haudegen has quit [Remote host closed the connection]
emias has quit [Ping timeout: 268 seconds]
emias has joined #ocaml
Haudegen has joined #ocaml
emias has quit [Ping timeout: 272 seconds]
sonologico has quit [Ping timeout: 268 seconds]
tane has quit [Quit: Leaving]
zolk3ri has joined #ocaml
zolk3ri has quit [Client Quit]
Jesin has joined #ocaml
spew has joined #ocaml
emias has joined #ocaml
rnmhdn has quit [Ping timeout: 250 seconds]
rnmhdn has joined #ocaml
Serpent7776 has quit [Quit: leaving]
Jesin has quit [Quit: Leaving]
Jesin has joined #ocaml
JimmyRcom has quit [Read error: No route to host]
JimmyRcom has joined #ocaml
kakadu has quit [Remote host closed the connection]
rnmhdn has quit [Ping timeout: 268 seconds]
jnavila has quit [Ping timeout: 252 seconds]
wilfredh has quit [Quit: Connection closed for inactivity]
jbrown has quit [Ping timeout: 252 seconds]
ygrek has joined #ocaml