YakshaLang / Yaksha

😈 Yaksha Programming Language - Offside rule + Lisp system for macros. 🐣 WIP
https://yakshalang.github.io/
GNU General Public License v3.0
192 stars 13 forks source link

Casting string litererals result in chevron #88

Closed JaDogg closed 2 months ago

JaDogg commented 2 months ago

Describe the bug Cannot cast string literals to c.CStr, etc

To Reproduce

import libs.c
def main() -> int:
    a: c.CStr = cast("c.CStr", "Hello World")
    0