Several changes, see commit msg
* clean up all tests * bugfix for zero value functions, and test * removed expand function, put in snippets * added doc strings to Symbol type * added doc strings to symbol declarations * implemented display for Args type * wrote a help function * wrote docstrings for all builtins and config vars
This commit is contained in:
parent
4b587f11ab
commit
dc6342bc74
16 changed files with 575 additions and 677 deletions
|
|
@ -240,9 +240,9 @@ impl fmt::Display for Ctr {
|
|||
Ctr::Float(s) => write!(f, "{}", s),
|
||||
Ctr::Bool(s) => {
|
||||
if *s {
|
||||
write!(f, "T")
|
||||
write!(f, "true")
|
||||
} else {
|
||||
write!(f, "F")
|
||||
write!(f, "false")
|
||||
}
|
||||
}
|
||||
Ctr::Seg(s) => write!(f, "{}", s),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue