5 lines
82 B
Text
5 lines
82 B
Text
{
|
|
const name: str = 'bob';
|
|
const bob = new Person(name);
|
|
print(bob.name);
|
|
}
|