view 2-Io/day2-conditionals.io @ 93:39084e2b8744

Add a function for word-aware text wrapping Potentially hugely inefficient because we iterate through the string character by character, but then splitting it first and iterating over words still needs to iterate over the string to know where to split.
author IBBoard <dev@ibboard.co.uk>
date Tue, 18 Jun 2019 21:05:00 +0100
parents 86668d32e162
children
line wrap: on
line source

# IF blocks are functions
if(true, "It is true", "It is false") println
if(false, "It is true", "It is false") println
# Or there's a more conventional long-hand, but it doesn't behave quite
# the same because we can't "println" the result - we'd need to put it
# inside the "then" and "else" functions
if(true) then("It is true") else ("It is false") #println