fix: 019 typo in example function, missing return type

This commit is contained in:
Sardorbek Imomaliev 2025-08-11 20:57:17 +01:00
parent 82d8f06ffa
commit 06e56be9c5

View File

@ -3,7 +3,7 @@
// example that takes two parameters. As you can see, parameters
// are declared just like any other types ("name": "type"):
//
// fn myFunction(number: u8, is_lucky: bool) {
// fn myFunction(number: u8, is_lucky: bool) void {
// ...
// }
//