Skip to content

Commit ac6c9b7

Browse files
authored
Update README.md
1 parent c6c7674 commit ac6c9b7

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ To get started with Mouse Script, simply download the application and run it fro
1616

1717
Here is an example of a simple script that displays a message to the user and asks for their input:
1818

19-
```cmd
20-
msgbox "Hello, world!"
21-
input $name
22-
echo "Your name is: $name"
19+
```php
20+
:Main
21+
$using = "Console";
22+
Print "Please enter your name ";
23+
$name = Input;
24+
Print "Your name is: ";
25+
Echo $name;
26+
Pause;
2327
```
2428

2529
For more information on the language and its supported features, please see the documentation.

0 commit comments

Comments
 (0)