depot
this commit
canon
subtree-staging
monorepo for the virus lounge
The Virus Lounge
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
users
/
tazjin
/
rlox
/
src
/
bytecode
/
value.rs
blob: 88ff8a695138213f3c8cfbb59c9cc1623047f769 (
plain
) (
blame
)
1
2
3
4
5
6
#[derive(Clone, Debug, PartialEq)]
pub enum
Value {
Nil,
Bool(
bool
),
Number(
f64
),
}