github.com/qri-io/qri@v0.10.1-0.20220104210721-c771715036cb/transform/staticlark/testdata/more_funcs.star (about)

     1  def func_a():
     2    func_b()
     3    func_d()
     4    func_g()
     5  
     6  def func_b():
     7    func_d()
     8  
     9  def func_c():
    10    func_e()
    11  
    12  def func_d():
    13    print('D')
    14  
    15  def func_e():
    16    print('E')
    17  
    18  def func_f():
    19    print('F')
    20  
    21  def func_g():
    22    print('G')
    23  
    24  def top_level_func():
    25    func_a()
    26  
    27  top_level_func()