explicit variable types

This commit is contained in:
nub31
2025-05-16 21:27:27 +02:00
parent ecd0e01aac
commit 1676806ef0
5 changed files with 31 additions and 10 deletions

View File

@@ -2,10 +2,7 @@ import c
global func main(argc: i64, argv: i64) {
printf("args: %d, starts at %p\n", argc, argv)
test(12.1)
return 23
}
func test(a: f64) {
printf("%f\n", a)
x: i8 = 320000
printf("%d\n", x)
}