Difference between revisions of "Main Page"
From thelinuxwiki
(→source code) |
(→source code) |
||
(One intermediate revision by one user not shown) | |||
Line 28: | Line 28: | ||
<nowiki> | <nowiki> | ||
<source lang="python"> | <source lang="python"> | ||
+ | </nowiki> | ||
+ | <br> | ||
+ | <nowiki> | ||
message = 'hello world!' | message = 'hello world!' | ||
− | + | </nowiki> | |
+ | <br> | ||
+ | <nowiki> | ||
print message | print message | ||
− | |||
− | |||
</nowiki> | </nowiki> | ||
+ | <br> | ||
+ | </source> | ||
+ | will yeild... | ||
<source lang="python"> | <source lang="python"> |
Latest revision as of 15:30, 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>
will yeild...
message = 'hello world!' print message