-
Notifications
You must be signed in to change notification settings - Fork 84
/
helloProgScript.sml
50 lines (39 loc) · 1.26 KB
/
helloProgScript.sml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(*
Hello World example, printing to standard output.
*)
open preamble basis
val _ = new_theory "helloProg"
val _ = translation_extends"basisProg";
val hello = process_topdecs
`fun hello u = TextIO.print "Hello World!\n"`
val () = append_prog hello
val st = get_ml_prog_state ()
Theorem hello_spec:
app (p:'ffi ffi_proj) ^(fetch_v "hello" st)
[Conv NONE []]
(STDIO fs)
(POSTv uv. &UNIT_TYPE () uv * STDIO (add_stdout fs (strlit "Hello World!\n")))
Proof
xcf "hello" st \\ xapp \\ xsimpl
QED
Theorem hello_whole_prog_spec:
whole_prog_spec ^(fetch_v "hello" st) cl fs NONE
((=) (add_stdout fs (strlit "Hello World!\n")))
Proof
rw[whole_prog_spec_def]
\\ qmatch_goalsub_abbrev_tac`fs1 = _ with numchars := _`
\\ qexists_tac`fs1`
\\ simp[Abbr`fs1`,GSYM add_stdo_with_numchars,with_same_numchars]
\\ match_mp_tac (MP_CANON (MATCH_MP app_wgframe hello_spec))
\\ xsimpl
QED
val spec = hello_whole_prog_spec
val name = "hello";
val (call_thm_hello, hello_prog_tm) = whole_prog_thm st name spec;
Definition hello_prog_def:
hello_prog = ^hello_prog_tm
End
Theorem hello_semantics =
call_thm_hello |> ONCE_REWRITE_RULE[GSYM hello_prog_def]
|> DISCH_ALL |> SIMP_RULE std_ss [AND_IMP_INTRO,GSYM CONJ_ASSOC]
val _ = export_theory ()