Open imartemy1524 opened 2 weeks ago
As I understood, the problem is in next code: This doesn't work:
foreach(key, task in self.subtasks.tasks){
if(!task.finished){
curr += task.amount;
}
}
But this does:
let tasks = self.subtasks.tasks;
foreach(key, task in tasks){
if(!task.finished){
curr += task.amount;
}
}
....?????....
Are you using the latest released (or pre-released, a.k.a. "next") version?
Tact source code
Relevant Tact/build system log output
What happened?
Tried to compile tact code, but got some unknown error.
What did you expect?
I expected to get error with stack, showing where the problem is
Steps to reproduce
How do you run Tact?
Blueprint
Anything else?
No response