Hello world!
local Enoria = require(game.ReplicatedStorage.Enoria.Enoria) -- importing Enoria core model
local e = Enoria.new() -- creating the Enoria core object
e:RunApp({
Name = "MyApp",
Home = e.TextLabel("Hello world")
})

Last updated
local Enoria = require(game.ReplicatedStorage.Enoria.Enoria) -- importing Enoria core model
local e = Enoria.new() -- creating the Enoria core object
e:RunApp({
Name = "MyApp",
Home = e.TextLabel("Hello world")
})

Last updated
...
e:RunApp({
Name = appName,
Home = e.Container({ -- a Container is like a Frame
Child = e.TextLabel("Hello world!", {
Centered = true, -- automatically centers the text
TextSize = 32 -- just like you would do with a normal TextLabel!
})
})
})