diff options
| author | ame <[email protected]> | 2024-04-15 11:52:28 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-04-15 11:52:28 -0500 |
| commit | 14e3ec0e4cf84b5e5fcc19b2e3c1a6bb0ca8787d (patch) | |
| tree | 0b7d95ec3294e4eec51a341a19a9207a07d521ff /docs/net.md | |
| parent | 4e5f5216d1af6ba4cf32103d04dc1a0b543af07b (diff) | |
docs
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
|
