src/Pure/config.ML
changeset 51990 cc66addbba6d
parent 51947 3301612c4893
child 52039 d0ba73d11e32
equal deleted inserted replaced
51989:700693cb96f1 51990:cc66addbba6d
    43   String of string;
    43   String of string;
    44 
    44 
    45 fun print_value (Bool true) = "true"
    45 fun print_value (Bool true) = "true"
    46   | print_value (Bool false) = "false"
    46   | print_value (Bool false) = "false"
    47   | print_value (Int i) = signed_string_of_int i
    47   | print_value (Int i) = signed_string_of_int i
    48   | print_value (Real x) = signed_string_of_real x
    48   | print_value (Real x) = Markup.print_real x
    49   | print_value (String s) = quote s;
    49   | print_value (String s) = quote s;
    50 
    50 
    51 fun print_type (Bool _) = "bool"
    51 fun print_type (Bool _) = "bool"
    52   | print_type (Int _) = "int"
    52   | print_type (Int _) = "int"
    53   | print_type (Real _) = "real"
    53   | print_type (Real _) = "real"