Viewing profile — h_sakurai
h_sakurai
HN member- Joined
- Sat, Apr 30, 2022, 12:55 PM UTC
- HN karma
- 7
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About h_sakurai
No profile information was provided.
Recent public activity
-
comment
Comment #31219365
I write Prolog version bulletML in Prolog. https://github.com/hsk/bulletpl/blob/master/bulletpl/1943_ro... It is a movement of the rolling fire of CAPCOM shooting game 1943. Origin…
-
comment
Comment #31219123
https://github.com/hsk/simpletapl/blob/master/prolog5/fullup... I have rewritten all TAPL code in Prolog. It was very interesting. https://github.com/mitsuchi/copl-in-prolog/ This …
-
comment
Comment #31215686
eval(I,I):-integer(I). eval(E1+E2,I):- eval(E1,I1),eval(E2,I2), I is I1+I2. eval(E1 E2,I):- eval(E1,I1),eval(E2,I2), I is I1 I2. :- eval(1 2+3 4,R),writeln(R),R=14. :- halt. Very s…