5 lines
115 B
Python
5 lines
115 B
Python
![]() |
import os
|
||
|
import numpy
|
||
|
|
||
|
def get_functions(program):
|
||
|
return [x for x in program.split(' ') if x.startswith('@')]
|