You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#lang basic-demo-3
|
|
5 x = 5
|
|
10 def f(x, y) = x * y
|
|
20 print f(9, f(4,5)) : print x
|
|
30 print 42 : import math/number-theory
|
|
40 print prime?(15)
|
|
50 import racket/base
|
|
60 print max(2, 4, 10, 8) |