1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-20 03:35:59 +00:00
Files
ubf/bug.erl
Joseph Wayne Norton 01172799d8 import ubf-1.7.tgz
2009-04-11 20:53:36 +09:00

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.