Sha256: 53245c29db0ed0cfb4624d7246d688c62268bdcc736a84bd976855395b035f32
Contents?: true
Size: 375 Bytes
Versions: 182
Compression:
Stored size: 375 Bytes
Contents
USING: hello-world tools.test ; IN: hello-world.tests ! There are no variadic functions in Factor, due to the nature of the stack. ! Usually, if you need var args, use an array. Here, we'll just use an empty string. { "Hello, World!" } [ "" hello-name ] unit-test { "Hello, Alice!" } [ "Alice" hello-name ] unit-test { "Hello, Bob!" } [ "Bob" hello-name ] unit-test
Version data entries
182 entries across 182 versions & 1 rubygems