src/HOL/ex/String.ML
author paulson
Fri, 14 Jun 1996 12:23:31 +0200
changeset 1797 334308d2afbc
parent 1266 3ae9fe3c0f68
child 2031 03a843f0f447
permissions -rw-r--r--
Updated list of theories for target ex

goal String.thy "hd(''ABCD'') = CHR ''A''";
by(Simp_tac 1);
result();

goal String.thy "hd(''ABCD'') ~= CHR ''B''";
by(Simp_tac 1);
result();

goal String.thy "''ABCD'' ~= ''ABCX''";
by(Simp_tac 1);
result();

goal String.thy "''ABCD'' = ''ABCD''";
by(Simp_tac 1);
result();

goal String.thy
  "''ABCDEFGHIJKLMNOPQRSTUVWXYZ'' ~= ''ABCDEFGHIJKLMNOPQRSTUVWXY''";
by(Simp_tac 1);
result();