View difference between Paste ID: f2af1806b and
SHOW: | | - or go back to the newest paste.
1-
1+
-module(test).
2
-compile(export_all).
3
4
test()->
5
  pp:start_link(), %pp:start()
6
  erlang:display("before allocate"),
7
  pp:alloc(self()),
8
  erlang:display("after allocate"),
9
  halt(0).