2017-05-22 13:53 GMT+02:00 Denis Kudriashov <dionisiydk@gmail.com>:
Class <<< #MyClass
superclass: #Object;
uses: #MyTrait;
vars: { #a. #b };
classVars: { #A. #B };
package: #MyPackage;
tags: #(Core);
layout: #MethodDictionaryLayout.

And few notes: all messages should be optional. It is not necessary to specify Object superclass. By default class can belongs to ��Unpackaged package.
I think superclass should be defined as symbol because it can not exists.

����