Hacker News new | ask | show | jobs
by jacquesm 2522 days ago
I don't see the semantic difference between calling a subroutine or using a Forth word.

65 emit

vs

putchar(65);

vs

(print 'A')

It's all the same to me.