Compiler Offline
Game API Programming Language
G Language
Build, Connect & Play together.

Under
Construction

G Language is being built for game developers who want a simpler way to create, connect, and scale Game APIs. Documentation and developer tools are coming soon.

Contact
main.g G v0.1
// G Language — Game API Example

game Arena {
  api Player {
    name: "Nova"
    health: 100
  }

  on start() {
    Player.connect()
    Arena.launch()
  }
}
GAME API READY