Language now supports top level definitions. no more last-expression-is-a-value thing, it's also a def. Host knows to run the special os def

This commit is contained in:
Dustin Swan 2026-02-06 17:33:00 -07:00
parent 9b8916eb72
commit 31ef279f16
No known key found for this signature in database
GPG key ID: 30D46587E2100467
4 changed files with 36 additions and 8 deletions

View file

@ -2,6 +2,7 @@ import type { Value } from './types';
// Literals and Variables
export type Literal = {
kind: 'literal'
value: Value