Guess who's working on a new language? This guy. Here's a snippet, anyone who can translate it to C gets a hypothetical snickers bar:
```
object Terms::[first: int64, second: int64] {
subroutine add::[self: @This] int64 {
expose self~~first + self~~second
}
}
subroutine main::[] {
data terms: Terms = Term<-[8, 9];
data result: int64;
run terms->add<-[] -> result;
expose result;
}
```