I like that tag! is a datatype. 

But.

It's not a string. So certain things that may be done to strings may not be done to 
tags.

Still, it sometimes behaves like it's not really a datatype of its own, but, in fact, 
a string.

>> a: <a href="">
== <a href="">
>> b: <a href ="">
== <a href ="">
>> a = b
== false

Shouldn't a = b return true here? In my opinion, these two tags are alike, just like 
two blocks with different spacing:

>> blk1: [ 1 2 3 ]
== [1 2 3]
>> blk2: [
[    1                         2
[    3]
== [
    1 2
    3]
>> blk1 = blk2
== true

Is this behaviour wanted? To what degree is tag! a datatype?

~H

Pr�tera censeo Carthaginem esse delendam

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to