Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Completed Get Started with Apex #18

Merged
merged 1 commit into from
Aug 25, 2020
Merged

Completed Get Started with Apex #18

merged 1 commit into from
Aug 25, 2020

Conversation

jackmchou
Copy link
Owner

This was hard, learning the syntax for the first time.
image

public class StringArrayTest {
    public static List<String> generateStringArray(Integer numOfStr) {
        List<String> strings = new List<String>();
        for (Integer i = 0; i < numOfStr; i++) {
            strings.add('Test ' + i);
            System.debug(strings[i]);
        }
        return strings;
    }
}

@jackmchou jackmchou merged commit 494f657 into master Aug 25, 2020
@jackmchou jackmchou deleted the 082520 branch August 25, 2020 23:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant