add simple data_buffer test

This commit is contained in:
MihailRis 2025-04-07 20:14:46 +03:00
parent 36c2971fcf
commit 794aa5b9cd

View File

@ -0,0 +1,4 @@
local data_buffer = require "core:data_buffer"
local buffer = data_buffer({}, 'LE', true)
buffer:put_int16(2025)
debug.print(buffer)