blob: b73b81d0328745423af610c2b2092f798a4b3178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@function foo() {
@return 1+2 3/4 5+6;
}
div {
content: foobar(1+2 3/4 5+6, orange);
content: append(1+2 2/3 5+6, orange);
content: 1+2 2/3 5+6;
content: type-of(2/3);
content: type-of(orange);
content: foo();
}
|