leankg 0.20.4

Lightweight Knowledge Graph for AI-Assisted Development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "json"

class User
  def initialize(@name : String)
  end

  def greet
    "hi #{@name}"
  end
end

module Utils
  def self.double(x : Int32) : Int32
    x * 2
  end
end