Add example

This commit is contained in:
Nathan McCarty 2025-01-01 02:57:02 -05:00
parent c8acc534a9
commit a0ba82ab38
7 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,11 @@
module Testy
import System
import Data.String
-- @@test Hello World non-null
helloNonNull : IO ()
helloNonNull =
if null "Hello World"
then exitFailure
else exitSuccess