Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 611 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 611 Bytes

nimAdif

An Amateur Data Interchange Format (ADIF) formatter and parser library written purely in Nim.

It contains only a simple formatter in 0.1.x. Parser would be implemented in later version.

Build

Using the library

Add requires directive in your .nimble file:

requires "nimAdif ~= 0.1.0"

And import and use it in your code:

import nimAdif

var record = AdifLogRecord()
record.call = "BI1MHK"
record.freq = 438_500_000

let log = result.dumps()

Build Document

nimble docs

Default directory for docs are htmldocs/. You may change it in nimsc.nim.