cotrIf
Creates an if statement
Aliases:
- cotrIf
- ifStatement
cpp
if (condition) { // Your code here}
csharp
if (condition) { // Your code here}
dart
if (condition) { // Your code here}
go
if condition { // Your code here}
haskell
if condition then expression1 else expression2
java
if (condition) { // Your code here}
javascript
if (condition) { // Your code here}
javascriptreact
if (condition) { // Your code here}
kotlin
if (condition) { // Your code here}
perl
if (condition) { # Your code here}
php
if (condition) { // Your code here}
powershell
if (condition) { # Your code here}
python
if condition: # Your code here
r
if (condition) { # Your code here}
ruby
if condition # Your code hereend
rust
if condition { // Your code here}
scala
if (condition) { // Your code here}
shellscript
if [ condition ]; then // Your code herefi
swift
if condition { // Your code here}
typescript
if (condition) { // Your code here}
typescriptreact
if (condition) { // Your code here}