5P by xguru 2022-06-19 | favorite | 댓글 1개
  • 빠르고, 안전하고, 쉬운 언어
  • AOT 컴파일, 정적 타입
  • Generational Reference 기반 메모리 관리로 레퍼런스 카운팅보다 2.3x 빠르고 안전
  • 프로그램의 메모리를 Region 단위로 분할 : Main, Read-only, Mutexed..
  • Region 격리, Fearless FFI, Higher RAII
exported func main() {  
  a str = "world!";  
  println("Hello " + a);  
}  

제 느낌은 그저 또다른 러스트네요