src/Doc/Tutorial/ToyList/ToyList_Test.thy
author wenzelm
Sun, 08 Oct 2023 19:05:35 +0200
changeset 78740 45ff003d337c
parent 69597 ff784d5a5bfb
permissions -rw-r--r--
discontinue obsolete "Interrupt" constructor (NB: catch-all pattern produces ML compiler error);

theory ToyList_Test
imports Main
begin

ML \<open>
  let val text =
    map (File.read o Path.append \<^master_dir>) [\<^path>\<open>ToyList1.txt\<close>, \<^path>\<open>ToyList2.txt\<close>]
    |> implode
  in Thy_Info.script_thy Position.start text \<^theory> end
\<close>

end