Module Circle
file
table
run
function
read
create
remove
rename
These are core modules in BER programming language.
Lua vs BER Module Usage
Lua Example
local file = io.open("data.txt", "r")
if file then
local content = file:read("*all")
print(content)
file:close()
end
BER Example
read ("data.txt")
board:( "Reading data.txt contents" )
/c In BER, you use commands instead of objects and methods e\
More to Come...
BER is evolving and there are many more modules and features coming soon! Keep building and exploring.