Adding function to list all store entries. OS command palette thing coming soon

This commit is contained in:
Dustin Swan 2026-02-07 00:03:08 -07:00
parent eef4daf8ec
commit a30d2217b8
No known key found for this signature in database
GPG key ID: 30D46587E2100467
3 changed files with 25 additions and 12 deletions

View file

@ -1,5 +1,6 @@
import { evaluate } from './interpreter'
import type { Env } from './env'
import type { Value } from './types'
import { evaluate } from './interpreter'
import { tokenize } from './lexer'
import { Parser } from './parser'
import { runApp } from './runtime';