This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Remove Early Access | |
* Description: Remove early access tag from products when public access date is past. | |
* Version: 1.0.0 | |
* Author: Andre Ranulfo | |
* Author URI: https://www.linkedin.com/in/andre-ranulfo/ | |
*/ | |
if (!defined('ABSPATH')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class MainClass { | |
public static void Main (string[] args) { | |
int numeroAnterior = 0; | |
int numeroAtual = 1; | |
int novoNumero; | |
int fibonacci; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class MainClass { | |
public static void Main (string[] args) { | |
//E aí pessoal! Segue um programinha que faz a Sequência Fibonacci. | |
// Um abraço!!! | |
int numeroAnterior = 0; | |
int numeroAtual = 1; | |
int novoNumero; |