色々考えたから誰か作ってくれ structとpointerがないとプログラム書きづらい # 追加構文 ## Structシステム - コンパイル前 ```ruby struct test var a var b$ dim c$ def hello(name$) print "test" + this.b$ + name$ print this.a end end var a = new test(1, "b", []) a.hello("test"); ``` - コンパイル後 ```ruby def __struct__test__hello(this_a,…