OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / ndk / tests / device / test-gnustl-2 / jni / hello.cpp
1 #include <iostream>
2
3 int main(void)
4 {
5     time_t  now = 0;
6
7     std::cout << "Hello ";
8     std::cout << 1.0;
9     std::cout << now;
10     std::cout << " World" << std::endl;
11 }