-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGEOBLOCKS.lua
More file actions
22 lines (22 loc) · 745 Bytes
/
GEOBLOCKS.lua
File metadata and controls
22 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- Start of script
-- GEOBLOCKS.lua
-- Written in: Lua 5.4
-- This is a list of countries this project is Geo-blocked in/Likely to be Geo-blocked in
print "Geoblocks\nThis is a list of countries this project is Geo-blocked in/Likely to be Geo-blocked in"
local function geob1 = -> print "North Korea"
function mode_geob1 = function() end
mode_geob1()
local function geob2 = -> print "South Korea"
function mode_goeb2 = function() end
mode_geob2()
local function geob3 = -> print "China"
function mode_goeb3 = function() end
mode_geob3()
geob1()
geob2()
geob3()
-- File info
-- File type: Lua source file (*.lua)
-- File version: 1 (2022, Sunday, April 3rd at 5:23 pm)
-- Line count (including blank lines and compiler line): 23
-- End of script