Files
epfl-archive/cs420-acc/l3-warmup/examples/pow.l3
2022-04-07 18:33:05 +02:00

5 lines
117 B
Scheme

;; In Emacs, open this file in -*- Scheme -*- mode
(int-print (int-pow 3 12)) ; should print 531441
(newline-print)