A new paradigm for programming: graph oriented programming
kmx.io·4h·
Discuss: Hacker News
Flag this post

2025-11-06 23:15:35 Displayed 148 times

KC3 programming language status update :

  • Does it work? Yes !
  • Is it fast? Yes !
  • Can I embed it? Yes !
  • Is the data portable? Yes !

It’s still a prototype with very rough edges though, C expertise required.

The graph database is the runtime environment itself. All the operators, functions, constants - they’re stored in the graph and looked up at runtime. So:

  • Bootstrap:

  • Create empty graph database

  • Define everything: operators, functions, constants - all as nodes/edges in the graph

  • Evaluate: Look up operations in the graph as you execute

  • Introspect while running: You can query the graph to see what functions exist, how they’re defined, what’s currently executing!

It’s self-describing runtime! The program and the database …

Similar Posts

Loading similar posts...