Fix to variant name creation for dependencies.

Last few changes to go Tuple Index,
Assert, Check, not

change test 35 to produce intended functionality
This commit is contained in:
Kasey White
2022-12-30 03:29:26 -05:00
committed by Lucas
parent b0ea187151
commit 3514e66234
4 changed files with 79 additions and 32 deletions

View File

@@ -4,6 +4,10 @@ pub opaque type Dict<key, value> {
inner: List<#(ByteArray, value)>,
}
pub fn toList(self: Dict<ByteArray, value>){
self.inner
}
/// Create a new map
pub fn new() -> Dict<key, value> {
Dict { inner: [] }