log_ios.m raw

   1  // SPDX-License-Identifier: Unlicense OR MIT
   2  
   3  // +build darwin,ios
   4  
   5  @import Foundation;
   6  
   7  #include "_cgo_export.h"
   8  
   9  void nslog(char *str) {
  10  	NSLog(@"%@", @(str));
  11  }
  12