DynamoDS / DesignScript

About the DesignScript language
Apache License 2.0
11 stars 11 forks source link

Disallow recursion in associative blocks #3

Open pboyer opened 8 years ago

pboyer commented 7 years ago
def foo(){
  return foo(){
  }
}

OR

def foo() {
 return bar();
}

def bar() { 
  return foo();
}