CASC-Lang / Yakou

An experimental JVM Language inspired by Rust.
38 stars 2 forks source link

Support nested function #15

Open ChAoSUnItY opened 3 years ago

ChAoSUnItY commented 3 years ago
fn a() {
    fn b() {

    }
    b()
}
ChAoSUnItY commented 3 years ago

Based on scope, we might develop generic, annotation, and "cascade" std lib first before implement this.