/*EXPECTED hello hell hel he h */ class _Main { static function main(args : string[]) : void { var f = function (s : string) : void { log s; if (s.length != 0) f(s.substring(0, s.length - 1)); }; f("hello"); } }

AltStyle によって変換されたページ (->オリジナル) /