mirror of
https://github.com/ubf/ubf.git
synced 2026-04-20 03:35:59 +00:00
12 lines
157 B
Erlang
12 lines
157 B
Erlang
-module(bug).
|
|
|
|
-compile(export_all).
|
|
|
|
test() ->
|
|
match([[123,[]]]).
|
|
|
|
match( [ [H1,H2|T] | Stack]) ->
|
|
{ok, H1, H2, T, Stack};
|
|
match(C) ->
|
|
nomatch.
|