12 lines
228 B
C
12 lines
228 B
C
#include "printlib.h"
|
|
|
|
int main() {
|
|
println_string("hello" - "llo");
|
|
return 0;
|
|
}
|
|
|
|
// SKIP TEST EXPECTED
|
|
// EXITCODE 2
|
|
// EXPECTED
|
|
// In function main: Line 4 col 17: invalid type for Minus not compatible with string: string
|