Данная пошаговая инструкция поможет освоить основы на простом примере
Для справки
Сервер поднимался на Debian 8 c характеристиками:
CPU - 1 ядро x 500 МГц
| abstract Fixed16(Int) { | |
| inline function new(x:Int) this = x; | |
| inline function raw() return this; | |
| inline static function RAW(x:Int) return new Fixed16(x); | |
| public static var MAX_VALUE:Fixed16 = RAW(0x7fffffff); | |
| public static var MIN_VALUE:Fixed16 = RAW(1); | |
| @:from public static inline function fromf(x:Float) { | |
| #if debug |