Rosetta Code:Solve a Task: Difference between revisions

Restored to undamaged version
m (Thundergnat moved page Rosetta Code:Benford's law to Rosetta Code:Solve a Task over redirect: revert destructive edits)
(Restored to undamaged version)
Tag: Manual revert
 
Line 9:
Please familiarize yourself with [[Rosetta Code:Copyrights|Rosetta Code's copyright policies]]. If you want the layman's summary: Don't post code you don't have permission to, and be aware that you're giving us (and others) permission to use it under specific conditions.
 
==Solve the task==
<pre>
It is best to read the task thoroughly, solve it, and check your solution ''before'' starting to edit the Rosetta Code page, (especially for tasks needing more than a very short solution).
 
==Adding Code==
10 DEF FNBENFORD(N)=LOG(1+1/N)/LOG(10)
Language examples on each page are in alphabetical order, so you need to find where your example would fit. Once you've found that, click the "edit" link closest above the area where you want to insert your code on the task page, and add something like this to the bottom of the edit field:
20 CLS
 
30 PRINT "One digit Benford's Law"
<pre>
40 FOR i = 1 TO 9
=={{header|Ayrch}}==
50 PRINT i,:PRINT USING "##.######";FNBENFORD(i)
<syntaxhighlight lang="ayrch">PRINT "Goodbye, World!"</syntaxhighlight>
60 NEXT i
70 END
</pre>
Remember, for the sake of simplicity, we're assuming your language is Ayrch, and the task is [[Hello world]]. We're also assuming, for the moment, that Ayrch looks a lot like BASIC.
Once you've added your code, hit the preview button to make sure you crossed all your T's and closed all your tags. If the language name shows up in red (a broken link), then either the language doesn't exist on the site yet (as a category), or you misspelled/mis-capitalized the name. Check your spelling against the one in [[:Category:Programming Languages]].
That's all you really need to do!
 
=Going a little further=
7,795

edits