a string, a silly string, depending on the value of n
Description
i1 : firstFunction 1
o1 = Hello World!
i2 : firstFunction 0
o2 = D'oh!
Code
/home/dan/src/M2/1.4/Macaulay2/packages/FirstPackage.m2:16:33-16:44: --source code:
firstFunction ZZ := String => n -> if n == 1 then "Hello World!" else "D'oh!"