src/HOL/String.ML
author paulson
Wed, 15 Jul 1998 10:15:13 +0200
changeset 5143 b94cd208f073
parent 5121 5c1f89ae8aef
permissions -rw-r--r--
Removal of leading "\!\!..." from most Goal commands

Goal "hd(''ABCD'') = CHR ''A''";
by (Simp_tac 1);
result();

Goal "hd(''ABCD'') ~= CHR ''B''";
by (Simp_tac 1);
result();

Goal "''ABCD'' ~= ''ABCX''";
by (Simp_tac 1);
result();

Goal "''ABCD'' = ''ABCD''";
by (Simp_tac 1);
result();

Goal
  "''ABCDEFGHIJKLMNOPQRSTUVWXYZ'' ~= ''ABCDEFGHIJKLMNOPQRSTUVWXY''";
by (Simp_tac 1);
result();