You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,11 @@ Setup
14
14
## Syntax Highlighting
15
15
In the `Syntax/` folder, you can find the raw Iro code which I used to generate a Sublime Text file with modifications. You can directly import the `OWScript.sublime-syntax` file by putting it in your ST3 `User` folder.
16
16
17
+
Projects
18
+
========
19
+
-**Cookie Clicker**[](https://discord.gg/5Nst8g5)
Time can be represented in *ms*, *s*, or *min* as a shorthand for the number value.
151
156
```
152
157
Wait(1s + 500ms)
153
158
Wait
@@ -290,7 +295,7 @@ scores.append(123) // Method
290
295
|Torbjorn|Torbjörn|
291
296
292
297
## Imports
293
-
OWScript allows bigger scripts and scripts that use common funcitonality to be broken up into modules and imported into a base file. All the "imported" files are directly copied into the base script to be transpiled to workshop code.
298
+
OWScript allows bigger scripts and scripts that use common funcitonality to be broken up into modules and imported into a base file. All the "imported" files are evaluated into a parse tree, which is transpiled to workshop code by the base file.
294
299
295
300
You can import a file by using the `#import 'filepath'`. If the file is in a folder, put the relative path to the file as shown in the examples below:
0 commit comments