You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Original pre-ISO C style without function prototypes */intmain(argc, argv)
intargc;
char*argv[];
{
...
}
C Base style in smalltalk would look like this:
^ {
4.
5.
6.
}
"normal" style would be:
[a
self b]
Acceptance Criteria
Biased on one styling option I want to choose my favoured one. Given a preference selector, when C Base Styilng is selected/deselcted, then Poppyprint styles in the selected/deselected matter
If C Base style is selected Poppyprint formats like Code Example 1 above
If C Base Style is not selected Poppyprint formats like Code Example 2 above
The text was updated successfully, but these errors were encountered:
Problem to solve
As
Squeak Developer
, I wantselect wether to format my code in C Base Style or not
so thatI can choose between formatting styles
.Further details
relates to #54
and #21
C Base style would look like this:
C Base style in smalltalk would look like this:
"normal" style would be:
[a self b]
Acceptance Criteria
a preference selector
, whenC Base Styilng is selected/deselcted
, thenPoppyprint styles in the selected/deselected matter
The text was updated successfully, but these errors were encountered: