-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hdplisp-on-racket (#18): libhxl-minimum +Rossetacode ref; I think we …
…should have some basic racket function to abstract a bit already very well HXLated datasets
- Loading branch information
Showing
3 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
hdpl-conventions/prototype/hdpl/commune/auxilium/explanare.rkt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#lang racket | ||
;; NOTE: this file is just a group of examples of how to debug internal racket structures. | ||
;; it's not really intented to be used as part of the library | ||
;; - "explanare": | ||
;; - explano: https://en.wiktionary.org/wiki/explano#Latin | ||
;; - explanare: https://en.wiktionary.org/wiki/explanare#Latin | ||
;; - "auxilium": | ||
;; - https://en.wiktionary.org/wiki/auxilium | ||
|
||
; (require hdpl/commune/structuram) | ||
(require csv-reading) | ||
|
||
|
||
;; Print each line of a file; Uses https://docs.racket-lang.org/csv-reading/index.html | ||
; Change the "ontologia/codicem/codicem.numerum.hxl.csv" | ||
(csv-for-each | ||
(lambda(x) | ||
(writeln(string-join x))) | ||
(make-csv-reader (open-input-file "ontologia/codicem/codicem.numerum.hxl.csv"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters