diff options
Diffstat (limited to 'docs/net.md')
| -rw-r--r-- | docs/net.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/net.md b/docs/net.md index 8becf4c..8c4f53b 100644 --- a/docs/net.md +++ b/docs/net.md @@ -10,6 +10,15 @@ the function will be ran on initilization, the argument has info on the server a **
right now everything within a server:GET function is partially global, it can read global variables (by making a copy),
it can not read/copy local variables or modify globals
+
+also, (for now) all globals must be refrenced as _G,
+ie:
+function foo()
+ ...
+end
+
+_G.foo()
+_G.llib.crypto.md5("hewwo purr")
**
```lua
|
