Talk:Execute a Markov algorithm: Difference between revisions

→‎task extension: added ==task extension==. -- ~~~~
(+ Files)
(→‎task extension: added ==task extension==. -- ~~~~)
Line 187:
 
To the description of this task I suggest to add links to two files, like markov_rules.txt and markov_tests.txt to dowload. No need to copy and paste some text from the page, with a risk of mistakes.
 
==task extension==
 
I think this task (since it is still in draft status) should be extended to include the 2<sup>nd</sup> example in the Wiki entry, namely:
<pre style="overflow:scroll">
# Rewrite binary numbers to their unary value (| bars).
# I.E.: 101 [base 2] will be converted to 5 bars.
#──────────────────────────────────────────────────────
|0 -> 0||
1 -> 0|
0 ->
</pre>
 
Using this simple Markov test can reveal a glaring program error (as it did for my REXX example), the first five entries executed correctly, but choked on this one. -- [[User:Gerard Schildberger|Gerard Schildberger]] 22:39, 14 November 2012 (UTC)