# Generated by rawk v2.0.0 # Source: test_simple.rawk # --- Standard Library --- function is_number(value) { return value == value + 0 } function is_string(value) { return !(value == value + 0) } function get_keys(array, result, i, count) { count = 0; for (i in array) { result[++count] = i }; return count } # --- User Functions --- function $add(x,y) { return x + y; } # --- Main Script --- BEGIN { print "Testing function extraction" } } { result = add(2, 3); print "Result:", result; exit 0; } # Rawk compilation summary: # - Rawk Version: 2.0.0 # - Functions defined: 1 # - Source lines: 15 # - Standard library functions included: 0