10 lines
178 B
Vala
10 lines
178 B
Vala
|
int thread_func () {
|
||
|
stdout.puts ("Thread is running!\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void main () {
|
||
|
var t = new Thread.try<int> ("My thread Debugging name...", thread_func);
|
||
|
t.join ();
|
||
|
}
|