2011-02-27 14:30:44 -05:00
|
|
|
use std;
|
|
|
|
import std._str;
|
2011-02-23 23:48:01 -05:00
|
|
|
|
|
|
|
fn test(str actual, str expected) {
|
|
|
|
log actual;
|
|
|
|
log expected;
|
2011-02-27 14:30:44 -05:00
|
|
|
check (_str.eq(actual, expected));
|
2011-02-23 23:48:01 -05:00
|
|
|
}
|
|
|
|
|
2010-10-01 14:54:40 -07:00
|
|
|
fn main() {
|
2011-02-27 14:30:44 -05:00
|
|
|
test(#fmt("hello %d friends and %s things", 10, "formatted"),
|
|
|
|
"hello 10 friends and formatted things");
|
2011-02-27 22:18:27 -05:00
|
|
|
test(#fmt("d: %d", 1), "d: 1");
|
|
|
|
test(#fmt("i: %i", 2), "i: 2");
|
|
|
|
test(#fmt("s: %s", "test"), "s: test");
|
2010-10-01 14:54:40 -07:00
|
|
|
}
|