13 lines
257 B
Plaintext
13 lines
257 B
Plaintext
|
public lib Preview.Classes {
|
||
|
public class Test {
|
||
|
private var _name: string;
|
||
|
|
||
|
public constructor(name: string) {
|
||
|
this._name = name;
|
||
|
}
|
||
|
|
||
|
public getName(): string {
|
||
|
return this._name;
|
||
|
}
|
||
|
}
|
||
|
}
|