mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
//! test_output({"x":3,"y":5})
|
|
|
|
export default function main() {
|
|
return new Point(3, 5);
|
|
}
|
|
|
|
class Point {
|
|
constructor(public x: number, public y: number) {}
|
|
}
|