1//
2// Copyright (c) ZeroC, Inc. All rights reserved.
3//
4
5[["js:es6-module"]]
6
7#pragma once
8
9#include <Demo/Point.ice>
10
11module Demo
12{
13
14module gx
15{
16
17struct Square
18{
19    Point p1;
20    Point p2;
21    Point p3;
22    Point p4;
23}
24
25}
26
27}
28