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 | fe418e3baf8ec8f8fc30892b8b4c24af23e5b3de (patch) | |
| tree | 0b7d95ec3294e4eec51a341a19a9207a07d521ff /docs/net.md | |
| parent | 3fe8ac768632d8f61da0052b1fd34c04123747b2 (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
|
