aboutsummaryrefslogtreecommitdiff
path: root/docs/net.md
diff options
context:
space:
mode:
authorame <[email protected]>2024-04-15 11:52:28 -0500
committerame <[email protected]>2024-04-15 11:52:28 -0500
commit14e3ec0e4cf84b5e5fcc19b2e3c1a6bb0ca8787d (patch)
tree0b7d95ec3294e4eec51a341a19a9207a07d521ff /docs/net.md
parent4e5f5216d1af6ba4cf32103d04dc1a0b543af07b (diff)
docs
Diffstat (limited to 'docs/net.md')
-rw-r--r--docs/net.md9
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