Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@highlight
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("is this bot still up?");
return 0;
} -
saas13045y@Haxk20 @Salehin
@highlight
#include <iostream>
int main ()
{
std::cout<<"But there is a workaround";
return 0;
}
thank @skayo -
@highlight
namespace ValaHighlightTest {
public class JustAClass : {
private int access_counter = {get; set; default = 0;}
private int _i = {get; set; default = 0;}
public i {
get {
access_counter++;
return _i;
}
set {
access_counter++;
_i = value;
}
public JustAClass iterator () {
return this;
}
public string? next_value () {
if (access_counter == 20)
return null;
return "foo";
}
public static int main (string args[]) {
var obj = JustAClass ();
foreach (var str in obj) {
print (@"$(str)bar: $(obj.i)\n");
}
return 0;
}
}
} -
Trithon10305y@highlight
package main
import "fmt"
func main() {
fmt.Println("Hello there")
//TODO: add general kenobi
} -
saas13045y@GodlikeBlock @aggelalex @Salehin @Haxk20 it also supports multiple themes. Go check out @highlight profile
-
Salehin255yBro,Is there any pure programmer community or social network? Devrant is all developers platform, not specifically for programmer.
-
Hehehe solarized dark is in use in my "elementary code" editor
@highlight
var prefered_theme = "Solarized dark"
print (@"I am so used to the $prefered_theme theme!");
#include <stdio.h>
int main()
{
printf("Hello DevRant");
return 0;
}
😉
rant