Skip to content

Instantly share code, notes, and snippets.

View D3NN0H's full-sized avatar

Dennis D3NN0H

  • Kenya
View GitHub Profile
@D3NN0H
D3NN0H / Variable.apex
Created November 21, 2025 09:35
Apex Dev Week 1 Homework - Variables Primitive Data Types
String helloText = 'Hello, CODING Crew!';
System.debug('Lower:' +helloText.tolowerCase());
String firstName = 'Dennis';
String lastName = 'Chomba';
String welcomeNote = 'Welcome to my Online Session: '+ firstName + ' ' + lastName;
System.debug('Welcome Note Value: ' + welcomeNote);*/
String welcomeText = 'Hello, coding crew to my blog number 2!';
System.debug(welcomeText);