crafting-interpreters/lox/class_fields.lox

7 lines
67 B
Text
Raw Normal View History

2025-05-26 10:19:18 +02:00
class Dog{}
var dog = Dog();
dog.name = "Leika";
print dog.name;