BBLANG
Overview
//For public function `foo:bar` accesible to backbench endpoints
//and other functions
PUBLIC_FUNCTION_NAME:FUNCTION_NAME()->{
//do things here
}
//For private function `bar`, accesible to other functions only
FUNCTION_NAME()->{
//do things here
}Example
Last updated