Tagged Questions
Miranda is a pure, non-strict, polymorphic, higher order functional programming language.
4
votes
1answer
45 views
Miranda Error cannot unify [[char]] with[char] on line 12
having a problem with coding with miranda am just a newbie to functional programming so slap me hard if ive dont an easy mistake so i learn
anyway i a getting an error on line 12 with having a ...
3
votes
3answers
48 views
Miranda while- and for-loops
I'm looking for a way to do while-loops or for-loops in Miranda.
I'm trying to do something like
while(blablanotfinished)
{
if(a=true)blabla
else blabla
}
1
vote
0answers
27 views
Bot with gpg encrypting
I am creating some bot on python and I want to send encrypted message him from different instant messaging clients, e.g Miranda IM, QIP etc. For this issue I use python-gnupg library for generating ...
1
vote
1answer
22 views
Missing case definition in Miranda
I'm getting a missing case definition when I'm calling this
check c (n:nx) state (l:ls,r:rs)
=true,if((isprefix state c)&(r=n))
=false, otherwise
I've checked this and it works on its own no ...
0
votes
2answers
47 views
Miranda going through lists
is there an easy way to go through a list?
lets say i wanted to access the 5th data on the list not knowing it was a B
["A","A","A","A","B","A","A","A","A"]
is there a way i can do it without ...