11 lines
138 B
C
11 lines
138 B
C
|
#include "printlib.h"
|
||
|
|
||
|
int main() {
|
||
|
println_string("hello"+" "+"there");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
// SKIP TEST EXPECTED
|
||
|
// EXPECTED
|
||
|
// hello there
|