Difference between revisions of "Main Page"
From thelinuxwiki
(→source code) |
|||
Line 28: | Line 28: | ||
<nowiki> | <nowiki> | ||
<source lang="python"> | <source lang="python"> | ||
− | + | message = 'hello world!' | |
− | + | ||
− | + | print message | |
+ | |||
+ | </source> | ||
</nowiki> | </nowiki> | ||
Line 38: | Line 40: | ||
print message | print message | ||
</source> | </source> | ||
− | |||
== special pages == | == special pages == | ||
[http://www.thelinuxwiki.com/index.php/Special:ListFiles List of uploaded files] | [http://www.thelinuxwiki.com/index.php/Special:ListFiles List of uploaded files] |
Revision as of 15:28, 14 August 2017
Consult the User's Guide for information on using the wiki software.
Contents |
Getting started
new user signup
Admin Quick Links
Uploading files? Click the link below.
syntax examples
source code
<source lang="python"> message = 'hello world!' print message </source>
message = 'hello world!' print message