mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
7f867ac166
Adds number support to the prototype. Binary operators are next.
19 lines
758 B
Agda
19 lines
758 B
Agda
{-# OPTIONS --rewriting #-}
|
|
|
|
module Examples.Run where
|
|
|
|
open import Agda.Builtin.Equality using (_≡_; refl)
|
|
open import Luau.Syntax using (nil; var; _$_; function_is_end; return; _∙_; done; _⟨_⟩; number)
|
|
open import Luau.Value using (nil; number)
|
|
open import Luau.Run using (run; return)
|
|
open import Luau.Heap using (lookup-next; next-emp; lookup-next-emp)
|
|
|
|
import Agda.Builtin.Equality.Rewrite
|
|
{-# REWRITE lookup-next next-emp lookup-next-emp #-}
|
|
|
|
ex1 : (run (function "id" ⟨ var "x" ⟩ is return (var "x") ∙ done end ∙ return (var "id" $ nil) ∙ done) ≡ return nil _)
|
|
ex1 = refl
|
|
|
|
ex2 : (run (function "fn" ⟨ var "x" ⟩ is return (number 123.0) ∙ done end ∙ return (var "fn" $ nil) ∙ done) ≡ return (number 123.0) _)
|
|
ex2 = refl
|