You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
331 B
12 lines
331 B
const string first = "first string";
|
|
|
|
[numthreads(1,1,1)]
|
|
void main() {
|
|
printf(first);
|
|
printf("please print this message.");
|
|
printf("Variables are: %d %d %.2f", 1u, 2u, 1.5f);
|
|
printf("Integers are: %d %d %d", 1, 2, 3);
|
|
printf("More: %d %d %d %d %d %d %d %d %d %d", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
|
|
}
|
|
|