Talk:Multiplication tables: Difference between revisions

m
no edit summary
mNo edit summary
 
(10 intermediate revisions by 4 users not shown)
Line 26:
I do not have a working copy of perl 6, so I can not test this change, but I would suggest:
 
<lang perl6> --~~~~
my $max = 12;
my $width = chars $max**2;
Line 40:
).fmt($f);
}</lang>
 
--[[User:Rdm|Rdm]] 19:47, 2 September 2010 (UTC)
 
: In my browser (Firefox 3.5.11 on Linux), it looks like the following:
<div style="border: solid">
[[File:Bildschirmfoto-Talk-Multiplication_tables_-_Rosetta_Code_-_Mozilla_Firefox.png]]
</div>
: As you see, the "wrong" version looks right, and the "right" version looks wrong. --[[User:Ce|Ce]] 21:16, 2 September 2010 (UTC)
 
:: Yes. The problem is that windows does not deal with those line drawing characters very well. But that proposed fix was not a good fix -- it deals with line drawing characters which are scaled wrong under windows by removing some characters, which is means it fails under linux where they are the right size. But have you tried my fix -- my fix used a different set of line drawing characters? (I have used that other set on this site with fewer windows induced problems.) --[[User:Rdm|Rdm]] 21:58, 2 September 2010 (UTC)
 
::: I had checked using firefox 3.6 over gnome on Solaris 10 and still saw the problem. [[File:Mult.gif]]
::: --[[User:Paddy3118|Paddy3118]] 06:43, 3 September 2010 (UTC). --[[User:Paddy3118|Paddy3118]] 08:35, 3 September 2010 (UTC)
 
==REXX==
: I think this test for EBCDIC is incorrect:
:: ebcdic='f0'==1 /*is this an EBCDIC machine? */
: correct:
:: ebcdic=('f1'x=1)
--[[User:Walterpachl|Walterpachl]] 07:25, 10 July 2012 (UTC)
2,289

edits