If some of you have some spare time have a look here: http://groups.google.com/group/comp.lang.modula2/browse_frm/thread/f840b453e1d024b6# Friendly greetings! ...
704
Jan Verhoeven
fruttenboel
Jul 3, 2009 8:12 pm
... Thanks for the hint. I couldn't resist stepping on some toes. -- Met vriendelijke groeten, Jan Verhoeven http://www.vedt.nl...
705
freem2pages
Jul 3, 2009 9:18 pm
... And so I found out about your Random-project... By the way I think the link to your pages is oudated in the links-section of this group -...
706
Jan Verhoeven
fruttenboel
Jul 3, 2009 11:51 pm
... Yes, that was a VERY old link! Fixed. Thanks. -- Met vriendelijke groeten, Jan Verhoeven http://www.vedt.nl...
707
Jesus
jconsuegra
Jul 4, 2009 4:25 am
... Thanks for the update! Jes....
708
mocka@yahoogroups.com
Dec 25, 2009 11:59 pm
Reminder from: mocka Yahoo! Group http://groups.yahoo.com/group/mocka/cal Juerg Gutknecht Sunday January 3, 2010 All Day (This event repeats every year.) ...
709
mocka@yahoogroups.com
Dec 26, 2010 12:03 am
Reminder from: mocka Yahoo! Group http://groups.yahoo.com/group/mocka/cal Juerg Gutknecht Monday January 3, 2011 All Day (This event repeats every year.) ...
710
Jes
jconsuegra
May 13, 2011 5:50 pm
As you can notice, this forum has slowed down a lot since the beginning. No much people interested in Mocka nowadays, but the spirit remains here. So if you...
711
Jan Verhoeven
fruttenboel
May 13, 2011 6:38 pm
Jes! Good to hear form you again! ... Yes. Always install from the mocka.tgz file. The .deb package will only run in exceptional cases. ...
712
Jes
jconsuegra
May 13, 2011 8:43 pm
Nice to hear from you too, Jan!. ... only...
713
Douglas Restrepo
lucas_max2002
May 16, 2011 11:38 am
Hi Forum Thank you for allow me be in this forum. Im a C/C++ Programmer, and im relatively new in mocka. Im not an expert but if i can help with some thing,...
714
Douglas Restrepo
lucas_max2002
Jun 6, 2011 11:38 am
Hi forum Im doing a code in mocka and I have the next question. Every time that I want to print to the screen some text with a value I have to write: ...
715
jan@...
fruttenboel
Jun 6, 2011 1:04 pm
... of course! c++ stole it from us in the first place.. ;0) PROCEDURE PrintF (text : Strings.String; num : CARDINAL); BEGIN InOut.WriteString (text); ...
716
Douglas Restrepo
lucas_max2002
Jun 6, 2011 2:31 pm
Hi, Thankyou for your answer. I have the function you told me, but i did want to make a general function, but in this case I can only have a cardinal...
717
Jan Verhoeven
fruttenboel
Jun 6, 2011 2:48 pm
... You MAY do it in Modula-2, but you will have to write your own stdio.mod library.... Standard C, like standard Modula-2, cannot do this kind of printing....
718
freem2pages
Jun 6, 2011 4:24 pm
Hi! This is an old question and lots of discussions have taken place... If you have enough time you may want to browse this thread (from comp.lang.modula2): ...
719
freem2pages
Jun 7, 2011 4:56 pm
Hi again, I forgot to mention one of the GNU Modula-2 examples which demonstrates how to use printf from Modula-2. Here is the directory: ...
720
Douglas Restrepo
lucas_max2002
Jun 8, 2011 7:59 am
Hi Thankyou for all answers. I'll gonna try this last method http://cvs.savannah.gnu.org/viewvc/gm2/examples/callingC/?root=gm2 best regards ...
721
jan@...
fruttenboel
Jun 12, 2011 10:10 am
hi friends, happy pinksteren, whatever this christian holiday may be called outside of nl... the last few weeks I have been busy with (not to say addicted to)...
722
freem2pages
Jun 13, 2011 2:37 pm
As long as it is just printf the method is fine. As soon as one uses more and more functions from different C-libraries the whole method is very uncomfortable....
723
Douglas Restrepo
lucas_max2002
Jun 23, 2011 2:54 pm
Hi forum. Can somebody tell me if exists a function to get the lenght of an array. Thanks...
724
jan@...
fruttenboel
Jun 23, 2011 3:19 pm
... try HIGH ..... -- Met vriendelijke groeten, Jan Verhoeven...
725
jan@...
fruttenboel
Jun 23, 2011 4:09 pm
... MODULE tst; IMPORT InOut; VAR arr : ARRAY [0..88] OF REAL; BEGIN InOut.WriteCard (HIGH (arr), 7); InOut.WriteLn END tst. ...
726
freem2pages
Jun 28, 2011 5:04 pm
Hi again, I just found a module in the GNU Modula-2 libraries called "FormatStrings" which is also a possible solution: ...
727
Jes
jconsuegra
Jun 28, 2011 5:10 pm
Thanks a lot for the pointer!...
728
Douglas Restrepo
lucas_max2002
Jul 4, 2011 2:47 pm
Hi Forum Im having a problem in my proyect. I have to calculate the next formula (too many time) "value = T + tmp MOD Rang + Mn" and it works ok the firsts...
729
Jan Verhoeven
fruttenboel
Jul 4, 2011 9:05 pm
... 2^32 = 4 294 967 296 value = 4 294 984 404 ... Correct. That is value MOD 2^ 32. ... Overflow. You should check on overflow in this kind of situations......
730
Douglas Restrepo
lucas_max2002
Jul 8, 2011 6:32 pm
Hi again forum. can somebody tell me where i can find a good tutorial to work with threads in modula 2. I have been looking this page ...
731
Jan Verhoeven
fruttenboel
Jul 8, 2011 9:09 pm
... On the other list (at google groups) there is another person looking for help with Stony Brooke. Also there: no help. The days of Stony Brooke are over.......
732
Jan Verhoeven
fruttenboel
Jul 8, 2011 9:26 pm
... Is this the same as a CoRoutine? These are described quite extensively in the KN King book. Or coronado:...