![]() |
|
Navigation |
Synopsis Left alignment of string in given space.
Function
Usage
import String;
Description
Examples
rascal>import String; ok rascal>left("abc", 10); str: "abc " rascal>left("abc", 10, "x"); str: "abcxxxxxxx" ![]() |