Post History
Exploiting layout Make it thin Newlines and indentation are expensive, so remove them when possible. Some examples: &v factorial v< > >:1-:| v* < >$>\:| ...
Answer
#2: Post edited
- # Exploiting layout
- ## Make it thin
- Newlines and indentation are expensive, so remove them when possible.
- Some examples:
- ```
- &v factorial
- v< >
- >:1-:| v* <
- >$>\:|
- >$.@
- ```
- Can be golfed significantly by removing `|`, which requires at least 3 lines
- ```
05>:1-:#v_$>\:#v_$.@^ < ^* <- ```
- It could probably be golfed further by using unefunge-98 and the `j` command to remove the second line.
- # Exploiting layout
- ## Make it thin
- Newlines and indentation are expensive, so remove them when possible.
- Some examples:
- ```
- &v factorial
- v< >
- >:1-:| v* <
- >$>\:|
- >$.@
- ```
- Can be golfed significantly by removing `|`, which requires at least 3 lines
- ```
- &>:1-:#v_$>\:#v_$.@
- ^ < ^* <
- ```
- It could probably be golfed further by using unefunge-98 and the `j` command to remove the second line.
#1: Initial revision
# Exploiting layout ## Make it thin Newlines and indentation are expensive, so remove them when possible. Some examples: ``` &v factorial v< > >:1-:| v* < >$>\:| >$.@ ``` Can be golfed significantly by removing `|`, which requires at least 3 lines ``` 05>:1-:#v_$>\:#v_$.@ ^ < ^* < ``` It could probably be golfed further by using unefunge-98 and the `j` command to remove the second line.