a gleam implementation of a CS assignment originally written in cpp
at gleam 459 B view raw
1name = "bible_search" 2version = "0.1.0" 3 4description = "search through the OT.txt bible format for a specific reference" 5licences = ["MIT"] 6repository = { type = "github", user = "cu-cs1210", repo = "lab-6-kieranklukas" } 7links = [{ title = "Website", href = "https://dunkirk.sh" }] 8 9[dependencies] 10gleam_stdlib = ">= 0.44.0 and < 2.0.0" 11simplifile = ">= 2.3.0 and < 3.0.0" 12input = ">= 1.0.1 and < 2.0.0" 13 14[dev-dependencies] 15gleeunit = ">= 1.0.0 and < 2.0.0"