Skip to content

v1.1-beta

Pre-release
Pre-release

Choose a tag to compare

@LightSharpLang LightSharpLang released this 03 Dec 19:20
· 13 commits to main since this release
9bb5d8d

in this version i added fixed types

int i = 0
fix(i)
i = 0.5  <= Error

signed / unsigned

int i = 0
unsign(i)

fix(i)
sign(i) <= Error

an attribute seeker

is(UNSIGNED, var)
is(SIGNED, var)