language: floating point support

This commit is contained in:
2023-09-09 00:08:30 -04:00
parent bf474f6b69
commit e8766323ee
19 changed files with 187 additions and 39 deletions

4
examples/numbers.pork Normal file
View File

@ -0,0 +1,4 @@
export func main() {
let pi = 3.141592653589793
println(pi)
}