↧
【Go】Goのジェネリックメソッドについて
Goのジェネリクス Goには、ジェネリクスという概念があります。関数か構造体を定義する際に、一部の型を変数として扱い、コードの再利用性の向上させます。 // generic function // …
View Articlecomelangでpico timer intterupt task switching os
#include <comelang.h> #include "hardware/timer.h" #define STACK_SIZE 1024 volatile uint32_t SP,PC, …
View Articlecomelangにコードを生成しないgenericsが入りました。
No generating code collection #include <comelang.h> struct sData { int a; int b; }; int main(int ar…
View Articleコードを生成しないcollection完成しました
#include <comelang.h> struct sData { int a; int b; }; int main(int argc, char** argv) { list<sData…
View Article