Thursday, April 22, 2021

Hello World

Start with Hello World as a tradition.

Try to enter code block to blogger using Hilite.me !

Test code sample in salesforce Apex format.

@isTest
private class HelloWorld_Test{
  static testMethod void createHelloWorld() {
        Account a = new Account(name='Hello World');
        insert a;
        System.debug(LoggingLevel.INFO, 'Hello World account ID :' + a.Id);
  }
}

End of code block Test.

No comments:

Post a Comment

Migrating from Renpy to Godot

 Due to the limitation of renpy in rendering dynamic screen ,  due the the black border it gives in different UI scale resolution , finally ...