Scripting Basics: Difference between revisions

From San Andreas Multiplayer
Jump to navigationJump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
<syntaxhighlight lang="python">
<code class="language-python">
def hello_world():
def hello_world():
     print("Hello, World!")
     print("Hello, World!")
</syntaxhighlight>
</code>

Revision as of 18:23, 2 November 2024

def hello_world():

   print("Hello, World!")