Changed oll to olly

This commit is contained in:
William J. Bowman 2016-01-11 15:46:55 -05:00
parent 792d37252f
commit ebdb419dd7
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
5 changed files with 9 additions and 9 deletions

View File

@ -45,4 +45,4 @@ Everything else in @racketmodname[cur] is provided by untrusted user-land code--
@include-section{scribblings/curnel.scrbl}
@include-section{scribblings/reflection.scrbl}
@include-section{scribblings/stdlib.scrbl}
@include-section{scribblings/oll.scrbl}
@include-section{scribblings/olly.scrbl}

View File

@ -1,12 +1,12 @@
#lang scribble/manual
@(require "defs.rkt")
@title{OLL: Ott-like Library}
@title{Olly: Ott-like LibrarY}
@defmodule[cur/oll]
The OLL provides syntax extensions for defining programming languages as inductive data. The library
@defmodule[cur/olly]
Olly provides syntax extensions for defining programming languages as inductive data. The library
is inspired by Ott@todo{Citation needed}, which provides an language that resembles math notation for
generating Coq definitions. The purpose of the OLL is not to replace Ott, but to demonstrate how
generating Coq definitions. The purpose of Olly is not to replace Ott, but to demonstrate how
powerful syntactic meta-programming can bring features previously only provided by external tools into
the language.
@ -45,7 +45,7 @@ nonterminal to another.
If @racket[#:vars] is given, it should be a list of meta-variables that
representing variables in the language. These meta-variables should only
appear in binding positions in @racket[constructors]. These variables
are represented as De Bruijn indexes, and OLL provides some functions
are represented as De Bruijn indexes, and Olly provides some functions
for working with De Bruijn indexes.
If @racket[#:output-coq] is given, it should be a string representing a

View File

@ -1,5 +1,5 @@
#lang s-exp "cur.rkt"
;; OLL: The OTT-Like Library
;; Olly: The OTT-Like LibrarY
;; TODO: Automagically create a parser from bnf grammar
(require
"stdlib/sugar.rkt"

View File

@ -6,7 +6,7 @@
(require
rackunit
cur/stdlib/sugar
cur/oll)
cur/olly)
(begin-for-syntax
(require rackunit)

View File

@ -3,7 +3,7 @@
rackunit
cur/stdlib/nat
cur/stdlib/sugar
cur/oll
cur/olly
cur/stdlib/maybe
cur/stdlib/bool
cur/stdlib/prop)