Skip to content
Nyx Docs
Search
Ctrl
K
Cancel
GitHub
Select theme
Dark
Light
Auto
The Nyx language
Learn and get started with the Nyx programming language.
Get Started
my.nyx
func
multiply
(
a
,
b
)
=
{
return
a
*
b
;
}
auto
product
=
multiply
(
6
,
7
);