thelang-io / the

The Programming Language
https://thelang.io
Apache License 2.0
44 stars 0 forks source link

type casting with `as` #65

Closed delasy closed 1 year ago

delasy commented 1 year ago

Example:

files := ["a.txt", "b.txt", "c.txt"]

loop i := 0; i < files.len; i++ {
  print(files[i] as str)
}