Align columns: Difference between revisions

Content added Content deleted
m (→‎{{header|Rust}}: Applied rustfmt, updated trim_right_matches to trim_end_matches)
m (→‎{{header|Wren}}: Change of library method name.)
Line 8,133: Line 8,133:
System.write(Fmt.s(width, line[i]))
System.write(Fmt.s(width, line[i]))
} else if (just == CENTER) {
} else if (just == CENTER) {
System.write(Fmt.c(width, line[i]))
System.write(Fmt.m(width, line[i]))
}
}
}
}