- Toolchain: Arm GNU Toolchain Downloads
- About rdimon.spec: nosys nano rdimon
C code example:
#include <stdio.h>
int main() { printf("Hello world!\n"); }
C code example:
#include <stdio.h>
int main() { printf("Hello world!\n"); }
Commands:
systemctl daemon-reload
systemctl enable qbittorrent
man systemd.service
A simple Range class for int with c++ range-based for statement supported. (or c++ foreach statement) (aka. minimal code to support c++ foreach/range-based-for)
As we know from this example, to support range-based for we need:
begin()
end()
method, which return a iterator or something else.bool operator !=(T&)
T operator ++()