File: dict.asd

package info (click to toggle)
ruby-unf-ext 0.0.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 5,472 kB
  • sloc: cpp: 14,118; lisp: 1,180; ruby: 94; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
(in-package :asdf)

(defsystem dict
  :name "dict"
  :version "0.0.2"
  :author "Takeru Ohta"
  :description "An implementation of hash table"
  
  :serial t
  :components ((:file "package")
               (:file "util")
               (:file "dict")))