struct Task {
uint id;
string content;
bool completed;
}
// creation
Task mytask = Task(1,"hi",false);struct Task {
uint id;
string content;
bool completed;
}
// creation
Task mytask = Task(1,"hi",false);